@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
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@inera/ids-core/components/alert/register'), require('@angular/common'), require('@inera/ids-core/components/alert-global/register'), require('@inera/ids-core/components/agent/register'), require('@inera/ids-core/components/badge/register'), require('@inera/ids-core/components/button/register'), require('@inera/ids-core/components/button-group/register'), require('@inera/ids-core/components/carousel/register'), require('@angular/platform-browser'), require('@angular/router'), require('@inera/ids-core/components/breadcrumbs/register'), require('@inera/ids-core/components/card/register'), require('@inera/ids-core/components/date-label/register'), require('@inera/ids-core/components/dialog/register'), require('@inera/ids-core/components/expandable/register'), require('@inera/ids-core/components/icon/register'), require('@inera/ids-core/components/form/input/register'), require('@inera/ids-core/components/form/checkbox/register'), require('@inera/ids-core/components/form/checkbox-group/register'), require('@inera/ids-core/components/form/error-message/register'), require('@inera/ids-core/components/form/radio/register'), require('@inera/ids-core/components/form/range/register'), require('@inera/ids-core/components/form/select/register'), require('@inera/ids-core/components/form/select-multiple/register'), require('@inera/ids-core/components/form/spinner/register'), require('@inera/ids-core/components/form/time/register'), require('@inera/ids-core/components/form/textarea/register'), require('@inera/ids-core/components/grid/row/register'), require('@inera/ids-core/components/grid/column/register'), require('@inera/ids-core/components/grid/container/register'), require('@inera/ids-core/components/link/register'), require('@inera/ids-core/components/list/register'), require('@inera/ids-core/components/navigation/content/register'), require('@inera/ids-core/components/notification/badge/register'), require('@inera/ids-core/components/mobile/menu/register'), require('@inera/ids-core/components/popover/register'), require('@inera/ids-core/components/progressbar/register'), require('@inera/ids-core/components/footer/register'), require('@inera/ids-core/components/header/register'), require('@inera/ids-core/components/stepper/register'), require('@inera/ids-core/components/tabs/register'), require('@inera/ids-core/components/tag/register'), require('@inera/ids-core/components/tooltip/register')) :
3
- typeof define === 'function' && define.amd ? define('@inera/ids-angular', ['exports', '@angular/core', '@inera/ids-core/components/alert/register', '@angular/common', '@inera/ids-core/components/alert-global/register', '@inera/ids-core/components/agent/register', '@inera/ids-core/components/badge/register', '@inera/ids-core/components/button/register', '@inera/ids-core/components/button-group/register', '@inera/ids-core/components/carousel/register', '@angular/platform-browser', '@angular/router', '@inera/ids-core/components/breadcrumbs/register', '@inera/ids-core/components/card/register', '@inera/ids-core/components/date-label/register', '@inera/ids-core/components/dialog/register', '@inera/ids-core/components/expandable/register', '@inera/ids-core/components/icon/register', '@inera/ids-core/components/form/input/register', '@inera/ids-core/components/form/checkbox/register', '@inera/ids-core/components/form/checkbox-group/register', '@inera/ids-core/components/form/error-message/register', '@inera/ids-core/components/form/radio/register', '@inera/ids-core/components/form/range/register', '@inera/ids-core/components/form/select/register', '@inera/ids-core/components/form/select-multiple/register', '@inera/ids-core/components/form/spinner/register', '@inera/ids-core/components/form/time/register', '@inera/ids-core/components/form/textarea/register', '@inera/ids-core/components/grid/row/register', '@inera/ids-core/components/grid/column/register', '@inera/ids-core/components/grid/container/register', '@inera/ids-core/components/link/register', '@inera/ids-core/components/list/register', '@inera/ids-core/components/navigation/content/register', '@inera/ids-core/components/notification/badge/register', '@inera/ids-core/components/mobile/menu/register', '@inera/ids-core/components/popover/register', '@inera/ids-core/components/progressbar/register', '@inera/ids-core/components/footer/register', '@inera/ids-core/components/header/register', '@inera/ids-core/components/stepper/register', '@inera/ids-core/components/tabs/register', '@inera/ids-core/components/tag/register', '@inera/ids-core/components/tooltip/register'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.inera = global.inera || {}, global.inera["ids-angular"] = {}), global.ng.core, null, global.ng.common, null, null, null, null, null, null, global.ng.platformBrowser, global.ng.router));
5
- })(this, (function (exports, i0, register, i2, register$1, register$2, register$3, register$4, register$5, register$6, i1, i3) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@inera/ids-core/components/alert/register'), require('@angular/common'), require('@inera/ids-core/components/alert-global/register'), require('@inera/ids-core/components/agent/register'), require('@inera/ids-core/components/badge/register'), require('@inera/ids-core/components/button/register'), require('@inera/ids-core/components/icon/register'), require('@inera/ids-core/components/button-group/register'), require('@inera/ids-core/components/carousel/register'), require('@angular/platform-browser'), require('@angular/router'), require('@inera/ids-core/components/breadcrumbs/register'), require('@inera/ids-core/components/card/register'), require('@inera/ids-core/components/date-label/register'), require('@inera/ids-core/components/dialog/register'), require('@inera/ids-core/components/expandable/register'), require('@inera/ids-core/components/form/input/register'), require('@inera/ids-core/components/form/checkbox/register'), require('@inera/ids-core/components/form/checkbox-group/register'), require('@inera/ids-core/components/form/error-message/register'), require('@inera/ids-core/components/form/radio/register'), require('@inera/ids-core/components/form/range/register'), require('@inera/ids-core/components/form/select/register'), require('@inera/ids-core/components/form/select-multiple/register'), require('@inera/ids-core/components/form/spinner/register'), require('@inera/ids-core/components/form/time/register'), require('@inera/ids-core/components/form/textarea/register'), require('@inera/ids-core/components/grid/row/register'), require('@inera/ids-core/components/grid/column/register'), require('@inera/ids-core/components/grid/container/register'), require('@inera/ids-core/components/link/register'), require('@inera/ids-core/components/list/register'), require('@inera/ids-core/components/navigation/content/register'), require('@inera/ids-core/components/notification/badge/register'), require('@inera/ids-core/components/mobile/menu/register'), require('@inera/ids-core/components/popover/register'), require('@inera/ids-core/components/progressbar/register'), require('@inera/ids-core/components/footer/register'), require('@inera/ids-core/components/header/register'), require('@inera/ids-core/components/stepper/register'), require('@inera/ids-core/components/tabs/register'), require('@inera/ids-core/components/tag/register'), require('@inera/ids-core/components/tooltip/register'), require('@inera/ids-core/components/form/toggle/register')) :
3
+ typeof define === 'function' && define.amd ? define('@inera/ids-angular', ['exports', '@angular/core', '@inera/ids-core/components/alert/register', '@angular/common', '@inera/ids-core/components/alert-global/register', '@inera/ids-core/components/agent/register', '@inera/ids-core/components/badge/register', '@inera/ids-core/components/button/register', '@inera/ids-core/components/icon/register', '@inera/ids-core/components/button-group/register', '@inera/ids-core/components/carousel/register', '@angular/platform-browser', '@angular/router', '@inera/ids-core/components/breadcrumbs/register', '@inera/ids-core/components/card/register', '@inera/ids-core/components/date-label/register', '@inera/ids-core/components/dialog/register', '@inera/ids-core/components/expandable/register', '@inera/ids-core/components/form/input/register', '@inera/ids-core/components/form/checkbox/register', '@inera/ids-core/components/form/checkbox-group/register', '@inera/ids-core/components/form/error-message/register', '@inera/ids-core/components/form/radio/register', '@inera/ids-core/components/form/range/register', '@inera/ids-core/components/form/select/register', '@inera/ids-core/components/form/select-multiple/register', '@inera/ids-core/components/form/spinner/register', '@inera/ids-core/components/form/time/register', '@inera/ids-core/components/form/textarea/register', '@inera/ids-core/components/grid/row/register', '@inera/ids-core/components/grid/column/register', '@inera/ids-core/components/grid/container/register', '@inera/ids-core/components/link/register', '@inera/ids-core/components/list/register', '@inera/ids-core/components/navigation/content/register', '@inera/ids-core/components/notification/badge/register', '@inera/ids-core/components/mobile/menu/register', '@inera/ids-core/components/popover/register', '@inera/ids-core/components/progressbar/register', '@inera/ids-core/components/footer/register', '@inera/ids-core/components/header/register', '@inera/ids-core/components/stepper/register', '@inera/ids-core/components/tabs/register', '@inera/ids-core/components/tag/register', '@inera/ids-core/components/tooltip/register', '@inera/ids-core/components/form/toggle/register'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.inera = global.inera || {}, global.inera["ids-angular"] = {}), global.ng.core, null, global.ng.common, null, null, null, null, null, null, null, global.ng.platformBrowser, global.ng.router));
5
+ })(this, (function (exports, i0, register, i2, register$1, register$2, register$3, register$4, register$5, register$6, register$7, i1, i3) { 'use strict';
6
6
 
7
7
  function _interopNamespace(e) {
8
8
  if (e && e.__esModule) return e;
@@ -31,19 +31,21 @@
31
31
  function IDAlertComponent() {
32
32
  this.dismissible = false;
33
33
  this.collapsable = false;
34
- this.srCollapseText = '';
35
- this.srExpandText = '';
34
+ this.collapsed = false;
35
+ this.srcollapsetext = '';
36
+ this.srexpandtext = '';
36
37
  this.headline = '';
37
38
  this.live = '';
38
39
  this.type = '';
39
- this.srCloseText = '';
40
- this.srIconTitle = '';
41
- this.closed = new i0.EventEmitter();
40
+ this.srclosetext = '';
41
+ this.sricontitle = '';
42
+ this.onClosed = new i0.EventEmitter();
43
+ this.onCollapsed = new i0.EventEmitter();
42
44
  }
43
45
  return IDAlertComponent;
44
46
  }());
45
47
  IDAlertComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
46
- IDAlertComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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; }"] });
48
+ IDAlertComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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; }"] });
47
49
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertComponent, decorators: [{
48
50
  type: i0.Component,
49
51
  args: [{
@@ -55,9 +57,11 @@
55
57
  type: i0.Input
56
58
  }], collapsable: [{
57
59
  type: i0.Input
58
- }], srCollapseText: [{
60
+ }], collapsed: [{
59
61
  type: i0.Input
60
- }], srExpandText: [{
62
+ }], srcollapsetext: [{
63
+ type: i0.Input
64
+ }], srexpandtext: [{
61
65
  type: i0.Input
62
66
  }], headline: [{
63
67
  type: i0.Input
@@ -65,11 +69,13 @@
65
69
  type: i0.Input
66
70
  }], type: [{
67
71
  type: i0.Input
68
- }], srCloseText: [{
72
+ }], srclosetext: [{
69
73
  type: i0.Input
70
- }], srIconTitle: [{
74
+ }], sricontitle: [{
71
75
  type: i0.Input
72
- }], closed: [{
76
+ }], onClosed: [{
77
+ type: i0.Output
78
+ }], onCollapsed: [{
73
79
  type: i0.Output
74
80
  }] } });
75
81
 
@@ -99,15 +105,16 @@
99
105
  function IDAlertGlobalComponent() {
100
106
  this.expanded = true;
101
107
  this.headline = '';
102
- this.hideMobileIcon = '';
103
- this.showText = 'Visa meddelande';
104
- this.hideText = 'Dölj meddelande';
105
- this.didToggleExpansion = new i0.EventEmitter();
108
+ this.hidemobileicon = '';
109
+ this.showtext = 'Visa meddelande';
110
+ this.hidetext = 'Dölj meddelande';
111
+ this.icon = undefined;
112
+ this.onDidToggleExpansion = new i0.EventEmitter();
106
113
  }
107
114
  return IDAlertGlobalComponent;
108
115
  }());
109
116
  IDAlertGlobalComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
110
- IDAlertGlobalComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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; }"] });
117
+ IDAlertGlobalComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
111
118
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalComponent, decorators: [{
112
119
  type: i0.Component,
113
120
  args: [{
@@ -119,13 +126,15 @@
119
126
  type: i0.Input
120
127
  }], headline: [{
121
128
  type: i0.Input
122
- }], hideMobileIcon: [{
129
+ }], hidemobileicon: [{
123
130
  type: i0.Input
124
- }], showText: [{
131
+ }], showtext: [{
125
132
  type: i0.Input
126
- }], hideText: [{
133
+ }], hidetext: [{
134
+ type: i0.Input
135
+ }], icon: [{
127
136
  type: i0.Input
128
- }], didToggleExpansion: [{
137
+ }], onDidToggleExpansion: [{
129
138
  type: i0.Output
130
139
  }] } });
131
140
 
@@ -155,14 +164,14 @@
155
164
  function IDAgentComponent() {
156
165
  this.expanded = true;
157
166
  this.headline = '';
158
- this.showText = 'Visa meddelande';
159
- this.hideText = 'Dölj meddelande';
160
- this.didToggleExpansion = new i0.EventEmitter();
167
+ this.showtext = 'Visa meddelande';
168
+ this.hidetext = 'Dölj meddelande';
169
+ this.onDidToggleExpansion = new i0.EventEmitter();
161
170
  }
162
171
  return IDAgentComponent;
163
172
  }());
164
173
  IDAgentComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAgentComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
165
- IDAgentComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
174
+ IDAgentComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
166
175
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAgentComponent, decorators: [{
167
176
  type: i0.Component,
168
177
  args: [{
@@ -174,11 +183,11 @@
174
183
  type: i0.Input
175
184
  }], headline: [{
176
185
  type: i0.Input
177
- }], showText: [{
186
+ }], showtext: [{
178
187
  type: i0.Input
179
- }], hideText: [{
188
+ }], hidetext: [{
180
189
  type: i0.Input
181
- }], didToggleExpansion: [{
190
+ }], onDidToggleExpansion: [{
182
191
  type: i0.Output
183
192
  }] } });
184
193
 
@@ -206,7 +215,7 @@
206
215
 
207
216
  var IDBadgeComponent = /** @class */ (function () {
208
217
  function IDBadgeComponent() {
209
- this.type = 'main';
218
+ this.type = 'primary';
210
219
  }
211
220
  return IDBadgeComponent;
212
221
  }());
@@ -251,8 +260,8 @@
251
260
  this.tertiary = false;
252
261
  this.toggle = false;
253
262
  this.block = false;
254
- this.sBlock = false;
255
- this.mBlock = false;
263
+ this.sblock = false;
264
+ this.mblock = false;
256
265
  this.active = false;
257
266
  this.submit = false;
258
267
  this.search = false;
@@ -260,12 +269,14 @@
260
269
  this.disabled = false;
261
270
  this.type = undefined;
262
271
  this.color = undefined;
263
- this.clicked = new i0.EventEmitter();
272
+ // Internal Icon
273
+ this.iconobject = undefined;
274
+ this.onClicked = new i0.EventEmitter();
264
275
  }
265
276
  return IDButtonComponent;
266
277
  }());
267
278
  IDButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
268
- IDButtonComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
279
+ IDButtonComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
269
280
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonComponent, decorators: [{
270
281
  type: i0.Component,
271
282
  args: [{
@@ -286,9 +297,9 @@
286
297
  type: i0.Input
287
298
  }], block: [{
288
299
  type: i0.Input
289
- }], sBlock: [{
300
+ }], sblock: [{
290
301
  type: i0.Input
291
- }], mBlock: [{
302
+ }], mblock: [{
292
303
  type: i0.Input
293
304
  }], active: [{
294
305
  type: i0.Input
@@ -304,18 +315,87 @@
304
315
  type: i0.Input
305
316
  }], color: [{
306
317
  type: i0.Input
307
- }], clicked: [{
318
+ }], iconobject: [{
319
+ type: i0.Input
320
+ }], onClicked: [{
308
321
  type: i0.Output
309
322
  }] } });
310
323
 
324
+ var IDIconComponent = /** @class */ (function () {
325
+ function IDIconComponent() {
326
+ this.name = undefined;
327
+ this.rotate = undefined;
328
+ this.color = undefined;
329
+ this.color2 = undefined;
330
+ this.colorpreset = undefined;
331
+ this.title = undefined;
332
+ this.size = 'm';
333
+ this.inline = false;
334
+ this.width = undefined;
335
+ this.height = undefined;
336
+ }
337
+ return IDIconComponent;
338
+ }());
339
+ IDIconComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
340
+ IDIconComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
341
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconComponent, decorators: [{
342
+ type: i0.Component,
343
+ args: [{
344
+ selector: 'id-icon',
345
+ templateUrl: './icon.component.html',
346
+ encapsulation: i0.ViewEncapsulation.None,
347
+ }]
348
+ }], ctorParameters: function () { return []; }, propDecorators: { name: [{
349
+ type: i0.Input
350
+ }], rotate: [{
351
+ type: i0.Input
352
+ }], color: [{
353
+ type: i0.Input
354
+ }], color2: [{
355
+ type: i0.Input
356
+ }], colorpreset: [{
357
+ type: i0.Input
358
+ }], title: [{
359
+ type: i0.Input
360
+ }], size: [{
361
+ type: i0.Input
362
+ }], inline: [{
363
+ type: i0.Input
364
+ }], width: [{
365
+ type: i0.Input
366
+ }], height: [{
367
+ type: i0.Input
368
+ }] } });
369
+
370
+ var IDIconModule = /** @class */ (function () {
371
+ function IDIconModule() {
372
+ }
373
+ return IDIconModule;
374
+ }());
375
+ IDIconModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
376
+ IDIconModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule, declarations: [IDIconComponent], exports: [IDIconComponent] });
377
+ IDIconModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule });
378
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule, decorators: [{
379
+ type: i0.NgModule,
380
+ args: [{
381
+ declarations: [
382
+ IDIconComponent
383
+ ],
384
+ exports: [
385
+ IDIconComponent
386
+ ],
387
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
388
+ }]
389
+ }] });
390
+
311
391
  var IDButtonModule = /** @class */ (function () {
312
392
  function IDButtonModule() {
313
393
  }
314
394
  return IDButtonModule;
315
395
  }());
316
396
  IDButtonModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
317
- IDButtonModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonModule, declarations: [IDButtonComponent], exports: [IDButtonComponent] });
318
- IDButtonModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonModule });
397
+ IDButtonModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonModule, declarations: [IDButtonComponent], imports: [i2.CommonModule, IDIconModule], exports: [IDButtonComponent] });
398
+ IDButtonModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonModule, imports: [[i2.CommonModule, IDIconModule]] });
319
399
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonModule, decorators: [{
320
400
  type: i0.NgModule,
321
401
  args: [{
@@ -325,6 +405,7 @@
325
405
  exports: [
326
406
  IDButtonComponent
327
407
  ],
408
+ imports: [i2.CommonModule, IDIconModule],
328
409
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
329
410
  }]
330
411
  }] });
@@ -372,14 +453,14 @@
372
453
  var IDCarouselComponent = /** @class */ (function () {
373
454
  function IDCarouselComponent() {
374
455
  this.autoplay = false;
375
- this.srNextLabel = 'Nästa slide';
376
- this.srPrevLabel = 'Föregående slide';
377
- this.autoplayDelay = 5000;
456
+ this.srnextlabel = 'Nästa slide';
457
+ this.srprevlabel = 'Föregående slide';
458
+ this.autoplaydelay = 5000;
378
459
  }
379
460
  return IDCarouselComponent;
380
461
  }());
381
462
  IDCarouselComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCarouselComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
382
- IDCarouselComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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>" });
463
+ IDCarouselComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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>" });
383
464
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCarouselComponent, decorators: [{
384
465
  type: i0.Component,
385
466
  args: [{
@@ -388,11 +469,11 @@
388
469
  }]
389
470
  }], ctorParameters: function () { return []; }, propDecorators: { autoplay: [{
390
471
  type: i0.Input
391
- }], srNextLabel: [{
472
+ }], srnextlabel: [{
392
473
  type: i0.Input
393
- }], srPrevLabel: [{
474
+ }], srprevlabel: [{
394
475
  type: i0.Input
395
- }], autoplayDelay: [{
476
+ }], autoplaydelay: [{
396
477
  type: i0.Input
397
478
  }] } });
398
479
 
@@ -980,15 +1061,15 @@
980
1061
 
981
1062
  var IDBreadcrumbsComponent = /** @class */ (function () {
982
1063
  function IDBreadcrumbsComponent() {
983
- this.links = [];
1064
+ this.lead = 'Du är här:';
984
1065
  this.current = '';
985
- this.lead = '';
986
- this.srLabel = '';
1066
+ this.srlabel = 'Du är här';
1067
+ this.links = [];
987
1068
  }
988
1069
  return IDBreadcrumbsComponent;
989
1070
  }());
990
1071
  IDBreadcrumbsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
991
- IDBreadcrumbsComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1072
+ IDBreadcrumbsComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
992
1073
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsComponent, decorators: [{
993
1074
  type: i0.Component,
994
1075
  args: [{
@@ -996,15 +1077,15 @@
996
1077
  templateUrl: './breadcrumbs.component.html',
997
1078
  encapsulation: i0.ViewEncapsulation.None,
998
1079
  }]
999
- }], ctorParameters: function () { return []; }, propDecorators: { links: [{
1000
- type: i0.Input
1001
- }], mobileLink: [{
1080
+ }], ctorParameters: function () { return []; }, propDecorators: { lead: [{
1002
1081
  type: i0.Input
1003
1082
  }], current: [{
1004
1083
  type: i0.Input
1005
- }], lead: [{
1084
+ }], srlabel: [{
1006
1085
  type: i0.Input
1007
- }], srLabel: [{
1086
+ }], links: [{
1087
+ type: i0.Input
1088
+ }], mobilelink: [{
1008
1089
  type: i0.Input
1009
1090
  }] } });
1010
1091
 
@@ -1038,11 +1119,9 @@
1038
1119
  return IDBreadcrumbsModule;
1039
1120
  }());
1040
1121
  IDBreadcrumbsModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1041
- IDBreadcrumbsModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsModule, declarations: [IDBreadcrumbsComponent], imports: [i2.CommonModule,
1042
- IDAnchorModule], exports: [IDBreadcrumbsComponent] });
1122
+ IDBreadcrumbsModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsModule, declarations: [IDBreadcrumbsComponent], imports: [i2.CommonModule, IDAnchorModule], exports: [IDBreadcrumbsComponent] });
1043
1123
  IDBreadcrumbsModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsModule, imports: [[
1044
- i2.CommonModule,
1045
- IDAnchorModule
1124
+ i2.CommonModule, IDAnchorModule
1046
1125
  ]] });
1047
1126
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsModule, decorators: [{
1048
1127
  type: i0.NgModule,
@@ -1054,8 +1133,7 @@
1054
1133
  IDBreadcrumbsComponent
1055
1134
  ],
1056
1135
  imports: [
1057
- i2.CommonModule,
1058
- IDAnchorModule
1136
+ i2.CommonModule, IDAnchorModule
1059
1137
  ],
1060
1138
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1061
1139
  }]
@@ -1106,13 +1184,13 @@
1106
1184
  this.date = null;
1107
1185
  this.year = null;
1108
1186
  this.month = null;
1109
- this.monthLabel = null;
1187
+ this.monthlabel = null;
1110
1188
  this.day = null;
1111
1189
  }
1112
1190
  return IDDateLabelComponent;
1113
1191
  }());
1114
1192
  IDDateLabelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1115
- IDDateLabelComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1193
+ IDDateLabelComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1116
1194
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelComponent, decorators: [{
1117
1195
  type: i0.Component,
1118
1196
  args: [{
@@ -1126,7 +1204,7 @@
1126
1204
  type: i0.Input
1127
1205
  }], month: [{
1128
1206
  type: i0.Input
1129
- }], monthLabel: [{
1207
+ }], monthlabel: [{
1130
1208
  type: i0.Input
1131
1209
  }], day: [{
1132
1210
  type: i0.Input
@@ -1156,18 +1234,22 @@
1156
1234
  var IDDialogComponent = /** @class */ (function () {
1157
1235
  function IDDialogComponent() {
1158
1236
  this.dismissible = false;
1159
- this.srCloseText = false;
1160
- this.noFocusTrap = false;
1237
+ this.srclosetext = '';
1238
+ this.nofocustrap = false;
1161
1239
  this.headline = '';
1162
1240
  this.overlay = false;
1163
1241
  this.persistent = false;
1164
1242
  this.show = false;
1165
1243
  this.width = '';
1244
+ this.onClosed = new i0.EventEmitter();
1166
1245
  }
1246
+ IDDialogComponent.prototype.emitOnClosed = function (e) {
1247
+ this.onClosed.emit(e);
1248
+ };
1167
1249
  return IDDialogComponent;
1168
1250
  }());
1169
1251
  IDDialogComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDialogComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1170
- IDDialogComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1252
+ IDDialogComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1171
1253
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDialogComponent, decorators: [{
1172
1254
  type: i0.Component,
1173
1255
  args: [{
@@ -1177,9 +1259,9 @@
1177
1259
  }]
1178
1260
  }], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
1179
1261
  type: i0.Input
1180
- }], srCloseText: [{
1262
+ }], srclosetext: [{
1181
1263
  type: i0.Input
1182
- }], noFocusTrap: [{
1264
+ }], nofocustrap: [{
1183
1265
  type: i0.Input
1184
1266
  }], headline: [{
1185
1267
  type: i0.Input
@@ -1191,6 +1273,8 @@
1191
1273
  type: i0.Input
1192
1274
  }], width: [{
1193
1275
  type: i0.Input
1276
+ }], onClosed: [{
1277
+ type: i0.Output
1194
1278
  }] } });
1195
1279
 
1196
1280
  var IDDialogActionsComponent = /** @class */ (function () {
@@ -1244,7 +1328,7 @@
1244
1328
  return IDExpandableComponent;
1245
1329
  }());
1246
1330
  IDExpandableComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDExpandableComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1247
- IDExpandableComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1331
+ IDExpandableComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1248
1332
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDExpandableComponent, decorators: [{
1249
1333
  type: i0.Component,
1250
1334
  args: [{
@@ -1360,77 +1444,11 @@
1360
1444
  return IDIcon;
1361
1445
  }());
1362
1446
 
1363
- var IDIconComponent = /** @class */ (function () {
1364
- function IDIconComponent() {
1365
- this.name = undefined;
1366
- this.rotate = undefined;
1367
- this.color = undefined;
1368
- this.color2 = undefined;
1369
- this.colorpreset = undefined;
1370
- this.title = undefined;
1371
- this.size = 'm';
1372
- this.inline = false;
1373
- this.width = undefined;
1374
- this.height = undefined;
1375
- }
1376
- return IDIconComponent;
1377
- }());
1378
- IDIconComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1379
- IDIconComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1380
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconComponent, decorators: [{
1381
- type: i0.Component,
1382
- args: [{
1383
- selector: 'id-icon',
1384
- templateUrl: './icon.component.html',
1385
- encapsulation: i0.ViewEncapsulation.None,
1386
- }]
1387
- }], ctorParameters: function () { return []; }, propDecorators: { name: [{
1388
- type: i0.Input
1389
- }], rotate: [{
1390
- type: i0.Input
1391
- }], color: [{
1392
- type: i0.Input
1393
- }], color2: [{
1394
- type: i0.Input
1395
- }], colorpreset: [{
1396
- type: i0.Input
1397
- }], title: [{
1398
- type: i0.Input
1399
- }], size: [{
1400
- type: i0.Input
1401
- }], inline: [{
1402
- type: i0.Input
1403
- }], width: [{
1404
- type: i0.Input
1405
- }], height: [{
1406
- type: i0.Input
1407
- }] } });
1408
-
1409
- var IDIconModule = /** @class */ (function () {
1410
- function IDIconModule() {
1411
- }
1412
- return IDIconModule;
1413
- }());
1414
- IDIconModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1415
- IDIconModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule, declarations: [IDIconComponent], exports: [IDIconComponent] });
1416
- IDIconModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule });
1417
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconModule, decorators: [{
1418
- type: i0.NgModule,
1419
- args: [{
1420
- declarations: [
1421
- IDIconComponent
1422
- ],
1423
- exports: [
1424
- IDIconComponent
1425
- ],
1426
- schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1427
- }]
1428
- }] });
1429
-
1430
1447
  var IDFormBase = /** @class */ (function () {
1431
1448
  function IDFormBase() {
1432
1449
  this.valid = 'true';
1433
- this.noValidation = false;
1450
+ this.light = false;
1451
+ this.novalidation = false;
1434
1452
  }
1435
1453
  return IDFormBase;
1436
1454
  }());
@@ -1440,7 +1458,9 @@
1440
1458
  type: i0.Injectable
1441
1459
  }], ctorParameters: function () { return []; }, propDecorators: { valid: [{
1442
1460
  type: i0.Input
1443
- }], noValidation: [{
1461
+ }], light: [{
1462
+ type: i0.Input
1463
+ }], novalidation: [{
1444
1464
  type: i0.Input
1445
1465
  }] } });
1446
1466
 
@@ -1449,13 +1469,12 @@
1449
1469
  function IDInputComponent() {
1450
1470
  var _this = _super.call(this) || this;
1451
1471
  _this.autofocus = false;
1452
- _this.appendIcon = null;
1453
1472
  return _this;
1454
1473
  }
1455
1474
  return IDInputComponent;
1456
1475
  }(IDFormBase));
1457
1476
  IDInputComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDInputComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1458
- IDInputComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus", appendIcon: "appendIcon" }, usesInheritance: true, ngImport: i0__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1477
+ IDInputComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus" }, usesInheritance: true, ngImport: i0__namespace, 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__namespace.ViewEncapsulation.None });
1459
1478
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDInputComponent, decorators: [{
1460
1479
  type: i0.Component,
1461
1480
  args: [{
@@ -1465,8 +1484,6 @@
1465
1484
  }]
1466
1485
  }], ctorParameters: function () { return []; }, propDecorators: { autofocus: [{
1467
1486
  type: i0.Input
1468
- }], appendIcon: [{
1469
- type: i0.Input
1470
1487
  }] } });
1471
1488
 
1472
1489
  var IDInputModule = /** @class */ (function () {
@@ -1501,7 +1518,7 @@
1501
1518
  return IDCheckboxComponent;
1502
1519
  }(IDFormBase));
1503
1520
  IDCheckboxComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1504
- IDCheckboxComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { compact: "compact" }, usesInheritance: true, ngImport: i0__namespace, 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__namespace.ViewEncapsulation.None });
1521
+ IDCheckboxComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { compact: "compact" }, usesInheritance: true, ngImport: i0__namespace, 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__namespace.ViewEncapsulation.None });
1505
1522
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxComponent, decorators: [{
1506
1523
  type: i0.Component,
1507
1524
  args: [{
@@ -1548,7 +1565,7 @@
1548
1565
  return IDCheckboxGroupComponent;
1549
1566
  }(IDFormBase));
1550
1567
  IDCheckboxGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1551
- IDCheckboxGroupComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1568
+ IDCheckboxGroupComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1552
1569
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupComponent, decorators: [{
1553
1570
  type: i0.Component,
1554
1571
  args: [{
@@ -1627,13 +1644,15 @@
1627
1644
  }]
1628
1645
  }] });
1629
1646
 
1630
- var IDRadioComponent = /** @class */ (function () {
1647
+ var IDRadioComponent = /** @class */ (function (_super) {
1648
+ __extends(IDRadioComponent, _super);
1631
1649
  function IDRadioComponent() {
1650
+ return _super !== null && _super.apply(this, arguments) || this;
1632
1651
  }
1633
1652
  return IDRadioComponent;
1634
- }());
1635
- IDRadioComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1636
- IDRadioComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioComponent, selector: "id-radio", ngImport: i0__namespace, template: "<ids-radio>\r\n <ng-content></ng-content>\r\n</ids-radio>", encapsulation: i0__namespace.ViewEncapsulation.None });
1653
+ }(IDFormBase));
1654
+ IDRadioComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
1655
+ IDRadioComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioComponent, selector: "id-radio", usesInheritance: true, ngImport: i0__namespace, template: "<ids-radio [light]=\"light ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-radio>", encapsulation: i0__namespace.ViewEncapsulation.None });
1637
1656
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioComponent, decorators: [{
1638
1657
  type: i0.Component,
1639
1658
  args: [{
@@ -1641,19 +1660,19 @@
1641
1660
  templateUrl: './radio.component.html',
1642
1661
  encapsulation: i0.ViewEncapsulation.None,
1643
1662
  }]
1644
- }], ctorParameters: function () { return []; } });
1663
+ }] });
1645
1664
 
1646
1665
  var IDRadioGroupComponent = /** @class */ (function () {
1647
1666
  function IDRadioGroupComponent() {
1648
1667
  this.name = undefined;
1649
1668
  this.legend = undefined;
1650
1669
  this.required = false;
1651
- this.errorMessage = undefined;
1670
+ this.errormessage = undefined;
1652
1671
  }
1653
1672
  return IDRadioGroupComponent;
1654
1673
  }());
1655
1674
  IDRadioGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1656
- IDRadioGroupComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1675
+ IDRadioGroupComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1657
1676
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioGroupComponent, decorators: [{
1658
1677
  type: i0.Component,
1659
1678
  args: [{
@@ -1667,7 +1686,7 @@
1667
1686
  type: i0.Input
1668
1687
  }], required: [{
1669
1688
  type: i0.Input
1670
- }], errorMessage: [{
1689
+ }], errormessage: [{
1671
1690
  type: i0.Input
1672
1691
  }] } });
1673
1692
 
@@ -1703,12 +1722,12 @@
1703
1722
 
1704
1723
  var IDRangeComponent = /** @class */ (function () {
1705
1724
  function IDRangeComponent() {
1706
- this.showTicks = false;
1725
+ this.showticks = false;
1707
1726
  }
1708
1727
  return IDRangeComponent;
1709
1728
  }());
1710
1729
  IDRangeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRangeComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1711
- IDRangeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showTicks: "showTicks" }, ngImport: i0__namespace, template: "<ids-range [showticks]=\"showTicks\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0__namespace.ViewEncapsulation.None });
1730
+ IDRangeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showticks: "showticks" }, ngImport: i0__namespace, template: "<ids-range [showticks]=\"showticks\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0__namespace.ViewEncapsulation.None });
1712
1731
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRangeComponent, decorators: [{
1713
1732
  type: i0.Component,
1714
1733
  args: [{
@@ -1716,7 +1735,7 @@
1716
1735
  templateUrl: './range.component.html',
1717
1736
  encapsulation: i0.ViewEncapsulation.None,
1718
1737
  }]
1719
- }], propDecorators: { showTicks: [{
1738
+ }], propDecorators: { showticks: [{
1720
1739
  type: i0.Input
1721
1740
  }] } });
1722
1741
 
@@ -1744,12 +1763,12 @@
1744
1763
  var IDSelectComponent = /** @class */ (function (_super) {
1745
1764
  __extends(IDSelectComponent, _super);
1746
1765
  function IDSelectComponent() {
1747
- return _super.call(this) || this;
1766
+ return _super !== null && _super.apply(this, arguments) || this;
1748
1767
  }
1749
1768
  return IDSelectComponent;
1750
1769
  }(IDFormBase));
1751
- IDSelectComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1752
- IDSelectComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", usesInheritance: true, ngImport: i0__namespace, template: "<ids-select [attr.valid]=\"valid\" [attr.novalidation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-select>", encapsulation: i0__namespace.ViewEncapsulation.None });
1770
+ IDSelectComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
1771
+ IDSelectComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", usesInheritance: true, ngImport: i0__namespace, 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__namespace.ViewEncapsulation.None });
1753
1772
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectComponent, decorators: [{
1754
1773
  type: i0.Component,
1755
1774
  args: [{
@@ -1757,7 +1776,7 @@
1757
1776
  templateUrl: './select.component.html',
1758
1777
  encapsulation: i0.ViewEncapsulation.None,
1759
1778
  }]
1760
- }], ctorParameters: function () { return []; } });
1779
+ }] });
1761
1780
 
1762
1781
  var IDSelectModule = /** @class */ (function () {
1763
1782
  function IDSelectModule() {
@@ -1785,7 +1804,7 @@
1785
1804
  function IDSelectMultipleComponent() {
1786
1805
  var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
1787
1806
  _this.label = undefined;
1788
- _this.errorMessage = undefined;
1807
+ _this.errormessage = undefined;
1789
1808
  _this.maxHeight = undefined;
1790
1809
  _this.placeholder = '';
1791
1810
  return _this;
@@ -1793,7 +1812,7 @@
1793
1812
  return IDSelectMultipleComponent;
1794
1813
  }(IDFormBase));
1795
1814
  IDSelectMultipleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
1796
- IDSelectMultipleComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1815
+ IDSelectMultipleComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
1797
1816
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleComponent, decorators: [{
1798
1817
  type: i0.Component,
1799
1818
  args: [{
@@ -1803,7 +1822,7 @@
1803
1822
  }]
1804
1823
  }], propDecorators: { label: [{
1805
1824
  type: i0.Input
1806
- }], errorMessage: [{
1825
+ }], errormessage: [{
1807
1826
  type: i0.Input
1808
1827
  }], maxHeight: [{
1809
1828
  type: i0.Input
@@ -1880,13 +1899,15 @@
1880
1899
  }]
1881
1900
  }] });
1882
1901
 
1883
- var IDTimeComponent = /** @class */ (function () {
1902
+ var IDTimeComponent = /** @class */ (function (_super) {
1903
+ __extends(IDTimeComponent, _super);
1884
1904
  function IDTimeComponent() {
1905
+ return _super !== null && _super.apply(this, arguments) || this;
1885
1906
  }
1886
1907
  return IDTimeComponent;
1887
- }());
1888
- IDTimeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTimeComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1889
- IDTimeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTimeComponent, selector: "id-time", ngImport: i0__namespace, template: "<ids-time>\r\n <ng-content></ng-content>\r\n</ids-time>", encapsulation: i0__namespace.ViewEncapsulation.None });
1908
+ }(IDFormBase));
1909
+ IDTimeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTimeComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
1910
+ IDTimeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTimeComponent, selector: "id-time", usesInheritance: true, ngImport: i0__namespace, template: "<ids-time [attr.light]=\"light ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-time>", encapsulation: i0__namespace.ViewEncapsulation.None });
1890
1911
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTimeComponent, decorators: [{
1891
1912
  type: i0.Component,
1892
1913
  args: [{
@@ -1894,7 +1915,7 @@
1894
1915
  templateUrl: './time.component.html',
1895
1916
  encapsulation: i0.ViewEncapsulation.None,
1896
1917
  }]
1897
- }], ctorParameters: function () { return []; } });
1918
+ }] });
1898
1919
 
1899
1920
  var IDTimeModule = /** @class */ (function () {
1900
1921
  function IDTimeModule() {
@@ -1927,7 +1948,7 @@
1927
1948
  return IDTextareaComponent;
1928
1949
  }(IDFormBase));
1929
1950
  IDTextareaComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTextareaComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1930
- IDTextareaComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { noFade: "noFade" }, usesInheritance: true, ngImport: i0__namespace, 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__namespace.ViewEncapsulation.None });
1951
+ IDTextareaComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { noFade: "noFade" }, usesInheritance: true, ngImport: i0__namespace, 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__namespace.ViewEncapsulation.None });
1931
1952
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTextareaComponent, decorators: [{
1932
1953
  type: i0.Component,
1933
1954
  args: [{
@@ -2123,37 +2144,38 @@
2123
2144
  var IDLinkComponent = /** @class */ (function () {
2124
2145
  function IDLinkComponent() {
2125
2146
  this.link = null;
2126
- this.notificationBadge = null;
2127
- this.prependIcon = null;
2128
- this.appendIcon = null;
2147
+ this.notificationbadge = null;
2148
+ this.prependicon = null;
2149
+ this.appendicon = null;
2129
2150
  this.underlined = false;
2130
2151
  this.padding = null;
2131
2152
  this.outline = null;
2132
2153
  this.block = false;
2133
2154
  this.color = undefined;
2134
2155
  this.size = undefined;
2135
- this.activeIcon = false;
2136
- this.activeIconBackground = undefined;
2156
+ this.activeicon = false;
2157
+ this.activeiconbackground = undefined;
2137
2158
  this.external = false;
2138
2159
  this.slot = undefined;
2139
2160
  }
2140
2161
  return IDLinkComponent;
2141
2162
  }());
2142
2163
  IDLinkComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2143
- IDLinkComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2164
+ IDLinkComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2144
2165
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, decorators: [{
2145
2166
  type: i0.Component,
2146
2167
  args: [{
2147
2168
  selector: 'id-link',
2148
- templateUrl: './link.component.html'
2169
+ templateUrl: './link.component.html',
2170
+ styles: [':host { display: inline; }']
2149
2171
  }]
2150
2172
  }], ctorParameters: function () { return []; }, propDecorators: { link: [{
2151
2173
  type: i0.Input
2152
- }], notificationBadge: [{
2174
+ }], notificationbadge: [{
2153
2175
  type: i0.Input
2154
- }], prependIcon: [{
2176
+ }], prependicon: [{
2155
2177
  type: i0.Input
2156
- }], appendIcon: [{
2178
+ }], appendicon: [{
2157
2179
  type: i0.Input
2158
2180
  }], underlined: [{
2159
2181
  type: i0.Input
@@ -2170,9 +2192,9 @@
2170
2192
  type: i0.Input
2171
2193
  }], size: [{
2172
2194
  type: i0.Input
2173
- }], activeIcon: [{
2195
+ }], activeicon: [{
2174
2196
  type: i0.Input
2175
- }], activeIconBackground: [{
2197
+ }], activeiconbackground: [{
2176
2198
  type: i0.Input
2177
2199
  }], external: [{
2178
2200
  type: i0.Input
@@ -2186,15 +2208,15 @@
2186
2208
  return IDLinkModule;
2187
2209
  }());
2188
2210
  IDLinkModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2189
- IDLinkModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, declarations: [IDLinkComponent], imports: [i2.CommonModule, IDAnchorModule], exports: [IDLinkComponent] });
2190
- IDLinkModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, imports: [[i2.CommonModule, IDAnchorModule]] });
2211
+ IDLinkModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, declarations: [IDLinkComponent], imports: [i2.CommonModule], exports: [IDLinkComponent] });
2212
+ IDLinkModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, imports: [[i2.CommonModule]] });
2191
2213
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, decorators: [{
2192
2214
  type: i0.NgModule,
2193
2215
  args: [{
2194
2216
  declarations: [
2195
2217
  IDLinkComponent
2196
2218
  ],
2197
- imports: [i2.CommonModule, IDAnchorModule],
2219
+ imports: [i2.CommonModule],
2198
2220
  exports: [
2199
2221
  IDLinkComponent
2200
2222
  ],
@@ -2245,14 +2267,14 @@
2245
2267
  this.date = null;
2246
2268
  this.year = null;
2247
2269
  this.month = null;
2248
- this.monthLabel = null;
2270
+ this.monthlabel = null;
2249
2271
  this.day = null;
2250
- this.showDateLabel = false;
2272
+ this.showdatelabel = false;
2251
2273
  }
2252
2274
  return IDListItemComponent;
2253
2275
  }());
2254
2276
  IDListItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2255
- IDListItemComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
2277
+ IDListItemComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
2256
2278
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemComponent, decorators: [{
2257
2279
  type: i0.Component,
2258
2280
  args: [{
@@ -2268,11 +2290,11 @@
2268
2290
  type: i0.Input
2269
2291
  }], month: [{
2270
2292
  type: i0.Input
2271
- }], monthLabel: [{
2293
+ }], monthlabel: [{
2272
2294
  type: i0.Input
2273
2295
  }], day: [{
2274
2296
  type: i0.Input
2275
- }], showDateLabel: [{
2297
+ }], showdatelabel: [{
2276
2298
  type: i0.Input
2277
2299
  }] } });
2278
2300
 
@@ -2455,7 +2477,7 @@
2455
2477
  return IDMobileMenuComponent;
2456
2478
  }());
2457
2479
  IDMobileMenuComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2458
- IDMobileMenuComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDMobileMenuComponent, selector: "id-mobile-menu", inputs: { type: "type", variation: "variation", items: "items" }, ngImport: i0__namespace, 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__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2480
+ IDMobileMenuComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDMobileMenuComponent, selector: "id-mobile-menu", inputs: { type: "type", variation: "variation", items: "items" }, ngImport: i0__namespace, 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__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2459
2481
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuComponent, decorators: [{
2460
2482
  type: i0.Component,
2461
2483
  args: [{
@@ -2562,24 +2584,24 @@
2562
2584
 
2563
2585
  var IDPopoverComponent = /** @class */ (function () {
2564
2586
  function IDPopoverComponent() {
2565
- this.maxWidth = '260px';
2566
- this.maxHeight = '260px';
2587
+ this.maxwidth = '260px';
2588
+ this.maxheight = '260px';
2567
2589
  this.cathegory = undefined;
2568
2590
  this.position = 'bottom';
2569
2591
  }
2570
2592
  return IDPopoverComponent;
2571
2593
  }());
2572
2594
  IDPopoverComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDPopoverComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2573
- IDPopoverComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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>" });
2595
+ IDPopoverComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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>" });
2574
2596
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDPopoverComponent, decorators: [{
2575
2597
  type: i0.Component,
2576
2598
  args: [{
2577
2599
  selector: 'id-popover',
2578
2600
  templateUrl: './popover.component.html',
2579
2601
  }]
2580
- }], ctorParameters: function () { return []; }, propDecorators: { maxWidth: [{
2602
+ }], ctorParameters: function () { return []; }, propDecorators: { maxwidth: [{
2581
2603
  type: i0.Input
2582
- }], maxHeight: [{
2604
+ }], maxheight: [{
2583
2605
  type: i0.Input
2584
2606
  }], cathegory: [{
2585
2607
  type: i0.Input
@@ -2656,15 +2678,16 @@
2656
2678
  this.headline = '';
2657
2679
  this.servicename = '';
2658
2680
  this.subheadline = '';
2681
+ this.cols = 3;
2659
2682
  this.linkcol1 = '2';
2660
2683
  this.linkcol2 = '2';
2661
2684
  this.linkcol3 = '2';
2662
- this.mobileMenuItems = undefined;
2685
+ this.mobilemenuitems = undefined;
2663
2686
  }
2664
2687
  return IDFooterComponent;
2665
2688
  }());
2666
2689
  IDFooterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2667
- IDFooterComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
2690
+ IDFooterComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
2668
2691
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterComponent, decorators: [{
2669
2692
  type: i0.Component,
2670
2693
  args: [{
@@ -2679,13 +2702,15 @@
2679
2702
  type: i0.Input
2680
2703
  }], subheadline: [{
2681
2704
  type: i0.Input
2705
+ }], cols: [{
2706
+ type: i0.Input
2682
2707
  }], linkcol1: [{
2683
2708
  type: i0.Input
2684
2709
  }], linkcol2: [{
2685
2710
  type: i0.Input
2686
2711
  }], linkcol3: [{
2687
2712
  type: i0.Input
2688
- }], mobileMenuItems: [{
2713
+ }], mobilemenuitems: [{
2689
2714
  type: i0.Input
2690
2715
  }] } });
2691
2716
 
@@ -2714,21 +2739,21 @@
2714
2739
  var IDHeaderComponent = /** @class */ (function () {
2715
2740
  function IDHeaderComponent() {
2716
2741
  this.type = '';
2717
- this.mobileMenuText = 'Meny';
2718
- this.hideRegionPicker = false;
2742
+ this.hideregionpicker = false;
2743
+ this.fluid = false;
2719
2744
  this.unresponsive = false;
2720
- this.hideBrand = false;
2721
- this.logoHref = '';
2722
- this.pickRegionText = 'Välj region';
2723
- this.srLogoLabel = 'Logotyp';
2724
- this.avatarMaxWidth = '';
2725
- this.persistentMobileMenu = false;
2726
- this.didToggleRegion = new i0.EventEmitter();
2745
+ this.hidebrand = false;
2746
+ this.logohref = '';
2747
+ this.pickregiontext = 'Välj region';
2748
+ this.srlogolabel = 'Logotyp';
2749
+ this.avatarmaxwidth = '';
2750
+ this.persistentmobilemenu = false;
2751
+ this.onDidToggleRegion = new i0.EventEmitter();
2727
2752
  }
2728
2753
  return IDHeaderComponent;
2729
2754
  }());
2730
2755
  IDHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2731
- IDHeaderComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2756
+ IDHeaderComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
2732
2757
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderComponent, decorators: [{
2733
2758
  type: i0.Component,
2734
2759
  args: [{
@@ -2737,45 +2762,45 @@
2737
2762
  }]
2738
2763
  }], propDecorators: { type: [{
2739
2764
  type: i0.Input
2740
- }], brandText: [{
2765
+ }], brandtext: [{
2741
2766
  type: i0.Input
2742
- }], brandTextTop: [{
2767
+ }], brandtexttop: [{
2743
2768
  type: i0.Input
2744
- }], brandTextBottom: [{
2769
+ }], brandtextbottom: [{
2745
2770
  type: i0.Input
2746
- }], mobileMenuText: [{
2771
+ }], hideregionpicker: [{
2747
2772
  type: i0.Input
2748
- }], hideRegionPicker: [{
2773
+ }], fluid: [{
2749
2774
  type: i0.Input
2750
2775
  }], unresponsive: [{
2751
2776
  type: i0.Input
2752
- }], hideBrand: [{
2777
+ }], hidebrand: [{
2753
2778
  type: i0.Input
2754
- }], logoHref: [{
2779
+ }], logohref: [{
2755
2780
  type: i0.Input
2756
- }], pickRegionText: [{
2781
+ }], pickregiontext: [{
2757
2782
  type: i0.Input
2758
- }], regionIcon: [{
2783
+ }], regionicon: [{
2759
2784
  type: i0.Input
2760
- }], regionIconTitle: [{
2785
+ }], regionicontitle: [{
2761
2786
  type: i0.Input
2762
- }], srLogoLabel: [{
2787
+ }], srlogolabel: [{
2763
2788
  type: i0.Input
2764
2789
  }], items: [{
2765
2790
  type: i0.Input
2766
2791
  }], avatar: [{
2767
2792
  type: i0.Input
2768
- }], avatarMaxWidth: [{
2793
+ }], avatarmaxwidth: [{
2769
2794
  type: i0.Input
2770
- }], navItems: [{
2795
+ }], navitems: [{
2771
2796
  type: i0.Input
2772
- }], persistentMobileMenu: [{
2797
+ }], persistentmobilemenu: [{
2773
2798
  type: i0.Input
2774
- }], mobileItems: [{
2799
+ }], mobileitems: [{
2775
2800
  type: i0.Input
2776
- }], mobileMenuItems: [{
2801
+ }], mobilemenuitems: [{
2777
2802
  type: i0.Input
2778
- }], didToggleRegion: [{
2803
+ }], onDidToggleRegion: [{
2779
2804
  type: i0.Output
2780
2805
  }] } });
2781
2806
 
@@ -2785,8 +2810,8 @@
2785
2810
  return IDHeaderModule;
2786
2811
  }());
2787
2812
  IDHeaderModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2788
- IDHeaderModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [i2.CommonModule, IDAnchorModule], exports: [IDHeaderComponent] });
2789
- IDHeaderModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, imports: [[i2.CommonModule, IDAnchorModule]] });
2813
+ IDHeaderModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [i2.CommonModule, IDAnchorModule, IDIconModule], exports: [IDHeaderComponent] });
2814
+ IDHeaderModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, imports: [[i2.CommonModule, IDAnchorModule, IDIconModule]] });
2790
2815
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, decorators: [{
2791
2816
  type: i0.NgModule,
2792
2817
  args: [{
@@ -2796,7 +2821,7 @@
2796
2821
  exports: [
2797
2822
  IDHeaderComponent
2798
2823
  ],
2799
- imports: [i2.CommonModule, IDAnchorModule],
2824
+ imports: [i2.CommonModule, IDAnchorModule, IDIconModule],
2800
2825
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
2801
2826
  }]
2802
2827
  }] });
@@ -2847,6 +2872,13 @@
2847
2872
  enumerable: false,
2848
2873
  configurable: true
2849
2874
  });
2875
+ Object.defineProperty(IDHeaderAvatar.prototype, "maxWidth", {
2876
+ get: function () {
2877
+ return this._props.maxWidth;
2878
+ },
2879
+ enumerable: false,
2880
+ configurable: true
2881
+ });
2850
2882
  Object.defineProperty(IDHeaderAvatar.prototype, "linkLeft", {
2851
2883
  get: function () {
2852
2884
  return this._props.linkLeft;
@@ -3030,7 +3062,7 @@
3030
3062
  return IDTabsComponent;
3031
3063
  }());
3032
3064
  IDTabsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
3033
- IDTabsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabsComponent, selector: "id-tabs", inputs: { responsive: "responsive", unresponsive: "unresponsive", selectLabel: "selectLabel" }, ngImport: i0__namespace, template: "<ids-tabs \n [unresponsive]=\"unresponsive ? true : null\"\n [responsive]=\"responsive\"\n [selectlabel]=\"selectLabel\">\n <ng-content></ng-content>\n</ids-tabs>" });
3065
+ IDTabsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabsComponent, selector: "id-tabs", inputs: { responsive: "responsive", unresponsive: "unresponsive", selectLabel: "selectLabel" }, ngImport: i0__namespace, 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>" });
3034
3066
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsComponent, decorators: [{
3035
3067
  type: i0.Component,
3036
3068
  args: [{
@@ -3048,20 +3080,20 @@
3048
3080
  var IDTabPanelComponent = /** @class */ (function () {
3049
3081
  function IDTabPanelComponent(elementRef) {
3050
3082
  this.elementRef = elementRef;
3051
- this['noFocus'] = undefined;
3083
+ this.nofocus = undefined;
3052
3084
  elementRef.nativeElement.setAttribute('slot', 'tab-panel');
3053
3085
  }
3054
3086
  return IDTabPanelComponent;
3055
3087
  }());
3056
3088
  IDTabPanelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabPanelComponent, deps: [{ token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
3057
- IDTabPanelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", inputs: { noFocus: "noFocus" }, ngImport: i0__namespace, template: "<ids-tab-panel [attr.nofocus]=\"noFocus\">\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
3089
+ IDTabPanelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", inputs: { nofocus: "nofocus" }, ngImport: i0__namespace, template: "<ids-tab-panel [attr.nofocus]=\"nofocus ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
3058
3090
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabPanelComponent, decorators: [{
3059
3091
  type: i0.Component,
3060
3092
  args: [{
3061
3093
  selector: 'id-tab-panel',
3062
3094
  templateUrl: './tab-panel.component.html'
3063
3095
  }]
3064
- }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; }, propDecorators: { 'noFocus': [{
3096
+ }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; }, propDecorators: { nofocus: [{
3065
3097
  type: i0.Input
3066
3098
  }] } });
3067
3099
 
@@ -3071,14 +3103,15 @@
3071
3103
  this.notices = 0;
3072
3104
  this.notifications = 0;
3073
3105
  this.label = '';
3074
- this.icon = '';
3075
3106
  this.selected = false;
3107
+ // Internal icon
3108
+ this.icon = undefined;
3076
3109
  elementRef.nativeElement.setAttribute('slot', 'tab');
3077
3110
  }
3078
3111
  return IDTabComponent;
3079
3112
  }());
3080
3113
  IDTabComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabComponent, deps: [{ token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
3081
- IDTabComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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>" });
3114
+ IDTabComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
3082
3115
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabComponent, decorators: [{
3083
3116
  type: i0.Component,
3084
3117
  args: [{
@@ -3091,10 +3124,10 @@
3091
3124
  type: i0.Input
3092
3125
  }], label: [{
3093
3126
  type: i0.Input
3094
- }], icon: [{
3095
- type: i0.Input
3096
3127
  }], selected: [{
3097
3128
  type: i0.Input
3129
+ }], icon: [{
3130
+ type: i0.Input
3098
3131
  }] } });
3099
3132
 
3100
3133
  var IDTabsModule = /** @class */ (function () {
@@ -3131,14 +3164,14 @@
3131
3164
  function IDTagComponent() {
3132
3165
  this.clickable = false;
3133
3166
  this.closeable = false;
3134
- this.srCloseLabel = '';
3135
- this.clicked = new i0.EventEmitter();
3136
- this.closed = new i0.EventEmitter();
3167
+ this.srcloselabel = '';
3168
+ this.onClicked = new i0.EventEmitter();
3169
+ this.onClosed = new i0.EventEmitter();
3137
3170
  }
3138
3171
  return IDTagComponent;
3139
3172
  }());
3140
3173
  IDTagComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTagComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
3141
- IDTagComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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>" });
3174
+ IDTagComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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>" });
3142
3175
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTagComponent, decorators: [{
3143
3176
  type: i0.Component,
3144
3177
  args: [{
@@ -3149,11 +3182,11 @@
3149
3182
  type: i0.Input
3150
3183
  }], closeable: [{
3151
3184
  type: i0.Input
3152
- }], srCloseLabel: [{
3185
+ }], srcloselabel: [{
3153
3186
  type: i0.Input
3154
- }], clicked: [{
3187
+ }], onClicked: [{
3155
3188
  type: i0.Output
3156
- }], closed: [{
3189
+ }], onClosed: [{
3157
3190
  type: i0.Output
3158
3191
  }] } });
3159
3192
 
@@ -3214,9 +3247,262 @@
3214
3247
  }]
3215
3248
  }] });
3216
3249
 
3250
+ var IDToggleComponent = /** @class */ (function () {
3251
+ function IDToggleComponent() {
3252
+ }
3253
+ return IDToggleComponent;
3254
+ }());
3255
+ IDToggleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDToggleComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
3256
+ IDToggleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDToggleComponent, selector: "id-toggle", ngImport: i0__namespace, template: "<ids-toggle>\r\n <ng-content></ng-content>\r\n</ids-toggle>", encapsulation: i0__namespace.ViewEncapsulation.None });
3257
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDToggleComponent, decorators: [{
3258
+ type: i0.Component,
3259
+ args: [{
3260
+ selector: 'id-toggle',
3261
+ templateUrl: './toggle.component.html',
3262
+ encapsulation: i0.ViewEncapsulation.None,
3263
+ }]
3264
+ }], ctorParameters: function () { return []; } });
3265
+
3266
+ var IDToggleModule = /** @class */ (function () {
3267
+ function IDToggleModule() {
3268
+ }
3269
+ return IDToggleModule;
3270
+ }());
3271
+ IDToggleModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDToggleModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
3272
+ IDToggleModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDToggleModule, declarations: [IDToggleComponent], exports: [IDToggleComponent] });
3273
+ IDToggleModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDToggleModule });
3274
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDToggleModule, decorators: [{
3275
+ type: i0.NgModule,
3276
+ args: [{
3277
+ declarations: [
3278
+ IDToggleComponent
3279
+ ],
3280
+ exports: [
3281
+ IDToggleComponent
3282
+ ],
3283
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
3284
+ }]
3285
+ }] });
3286
+
3217
3287
  /*
3218
3288
  * Public API Surface of ids-angular
3219
- */
3289
+ */
3290
+ /* Icons to be included when needed
3291
+
3292
+ export * from './lib/components/icons/1177/icon-1177.module';
3293
+ export * from './lib/components/icons/agent/icon-agent.module';
3294
+ export * from './lib/components/icons/arrow/icon-arrow.module';
3295
+ export * from './lib/components/icons/attention/icon-attention.module';
3296
+ export * from './lib/components/icons/blekinge/icon-blekinge.module';
3297
+ export * from './lib/components/icons/bookmark/icon-bookmark.module';
3298
+ export * from './lib/components/icons/calendar/icon-calendar.module';
3299
+ export * from './lib/components/icons/call/icon-call.module';
3300
+ export * from './lib/components/icons/call-active/icon-call-active.module';
3301
+ export * from './lib/components/icons/camera-off/icon-camera-off.module';
3302
+ export * from './lib/components/icons/camera-on/icon-camera-on.module';
3303
+ export * from './lib/components/icons/camera-switch/icon-camera-switch.module';
3304
+ export * from './lib/components/icons/chart-bar/icon-chart-bar.module';
3305
+ export * from './lib/components/icons/chart-line/icon-chart-line.module';
3306
+ export * from './lib/components/icons/check/icon-check.module';
3307
+ export * from './lib/components/icons/chevron/icon-chevron.module';
3308
+ export * from './lib/components/icons/chevron-bold/icon-chevron-bold.module';
3309
+ export * from './lib/components/icons/clipboard/icon-clipboard.module';
3310
+ export * from './lib/components/icons/clipboard-cross/icon-clipboard-cross.module';
3311
+ export * from './lib/components/icons/clipboard-text/icon-clipboard-text.module';
3312
+ export * from './lib/components/icons/clock/icon-clock.module';
3313
+ export * from './lib/components/icons/close/icon-close.module';
3314
+ export * from './lib/components/icons/close-bold/icon-close-bold.module';
3315
+ export * from './lib/components/icons/cog/icon-cog.module';
3316
+ export * from './lib/components/icons/computer/icon-computer.module';
3317
+ export * from './lib/components/icons/computer-inera/icon-computer-inera.module';
3318
+ export * from './lib/components/icons/copy-file/icon-copy-file.module';
3319
+ export * from './lib/components/icons/copy-link/icon-copy-link.module';
3320
+ export * from './lib/components/icons/doctors-bag/icon-doctors-bag.module';
3321
+ export * from './lib/components/icons/drag-n-drop/icon-drag-n-drop.module';
3322
+ export * from './lib/components/icons/ear-hearing/icon-ear-hearing.module';
3323
+ export * from './lib/components/icons/edit/icon-edit.module';
3324
+ export * from './lib/components/icons/email/icon-email.module';
3325
+ export * from './lib/components/icons/expand/icon-expand.module';
3326
+ export * from './lib/components/icons/external/icon-external.module';
3327
+ export * from './lib/components/icons/facebook/icon-facebook.module';
3328
+ export * from './lib/components/icons/file-excel/icon-file-excel.module';
3329
+ export * from './lib/components/icons/file-other/icon-file-other.module';
3330
+ export * from './lib/components/icons/file-pdf/icon-file-pdf.module';
3331
+ export * from './lib/components/icons/file-picture/icon-file-picture.module';
3332
+ export * from './lib/components/icons/file-powerpoint/icon-file-powerpoint.module';
3333
+ export * from './lib/components/icons/file-word/icon-file-word.module';
3334
+ export * from './lib/components/icons/find-care/icon-find-care.module';
3335
+ export * from './lib/components/icons/find-region/icon-find-region.module';
3336
+ export * from './lib/components/icons/gotland/icon-gotland.module';
3337
+ export * from './lib/components/icons/halland/icon-halland.module';
3338
+ export * from './lib/components/icons/house/icon-house.module';
3339
+ export * from './lib/components/icons/id-card/icon-id-card.module';
3340
+ export * from './lib/components/icons/id-card-locked/icon-id-card-locked.module';
3341
+ export * from './lib/components/icons/image/icon-image.module';
3342
+ export * from './lib/components/icons/inera/icon-inera.module';
3343
+ export * from './lib/components/icons/inera-legacy/icon-inera-legacy.module';
3344
+ export * from './lib/components/icons/information/icon-information.module';
3345
+ export * from './lib/components/icons/jamtland-harjedalen/icon-jamtland-harjedalen.module';
3346
+ export * from './lib/components/icons/jonkoping/icon-jonkoping.module';
3347
+ export * from './lib/components/icons/kalmar/icon-kalmar.module';
3348
+ export * from './lib/components/icons/kronoberg/icon-kronoberg.module';
3349
+ export * from './lib/components/icons/lightbulb/icon-lightbulb.module';
3350
+ export * from './lib/components/icons/linkedin/icon-linkedin.module';
3351
+ export * from './lib/components/icons/list/icon-list.module';
3352
+ export * from './lib/components/icons/lock/icon-lock.module';
3353
+ export * from './lib/components/icons/lock-open/icon-lock-open.module';
3354
+ export * from './lib/components/icons/log/icon-log.module';
3355
+ export * from './lib/components/icons/log-locked/icon-log-locked.module';
3356
+ export * from './lib/components/icons/menu/icon-menu.module';
3357
+ export * from './lib/components/icons/minus/icon-minus.module';
3358
+ export * from './lib/components/icons/norrbotten/icon-norrbotten.module';
3359
+ export * from './lib/components/icons/office-building/icon-office-building.module';
3360
+ export * from './lib/components/icons/orebro/icon-orebro.module';
3361
+ export * from './lib/components/icons/organization/icon-organization.module';
3362
+ export * from './lib/components/icons/ostergotland/icon-ostergotland.module';
3363
+ export * from './lib/components/icons/plus/icon-plus.module';
3364
+ export * from './lib/components/icons/print/icon-print.module';
3365
+ export * from './lib/components/icons/question/icon-question.module';
3366
+ export * from './lib/components/icons/reload/icon-reload.module';
3367
+ export * from './lib/components/icons/reply/icon-reply.module';
3368
+ export * from './lib/components/icons/search-inera/icon-search-inera.module';
3369
+ export * from './lib/components/icons/search/icon-search.module';
3370
+ export * from './lib/components/icons/shield-locked-primary/icon-shield-locked-primary.module';
3371
+ export * from './lib/components/icons/shield-locked/icon-shield-locked.module';
3372
+ export * from './lib/components/icons/skane/icon-skane.module';
3373
+ export * from './lib/components/icons/sormland/icon-sormland.module';
3374
+ export * from './lib/components/icons/star-filled/icon-star-filled.module';
3375
+ export * from './lib/components/icons/star/icon-star.module';
3376
+ export * from './lib/components/icons/stockholm/icon-stockholm.module';
3377
+ export * from './lib/components/icons/success/icon-success.module';
3378
+ export * from './lib/components/icons/swap/icon-swap.module';
3379
+ export * from './lib/components/icons/telephone/icon-telephone.module';
3380
+ export * from './lib/components/icons/test-tube-analyze/icon-test-tube-analyze.module';
3381
+ export * from './lib/components/icons/test-tube-empty/icon-test-tube-empty.module';
3382
+ export * from './lib/components/icons/test-tube/icon-test-tube.module';
3383
+ export * from './lib/components/icons/toggle-card/icon-toggle-card.module';
3384
+ export * from './lib/components/icons/toggle-list/icon-toggle-list.module';
3385
+ export * from './lib/components/icons/twitter/icon-twitter.module';
3386
+ export * from './lib/components/icons/uppsala/icon-uppsala.module';
3387
+ export * from './lib/components/icons/user/icon-user.module';
3388
+ export * from './lib/components/icons/vasterbotten/icon-vasterbotten.module';
3389
+ export * from './lib/components/icons/vasternorrland/icon-vasternorrland.module';
3390
+ export * from './lib/components/icons/vastmanland/icon-vastmanland.module';
3391
+ export * from './lib/components/icons/vastra-gotaland/icon-vastra-gotaland.module';
3392
+ export * from './lib/components/icons/video-off/icon-video-off.module';
3393
+ export * from './lib/components/icons/video-on/icon-video-on.module';
3394
+ export * from './lib/components/icons/video-switch/icon-video-switch.module';
3395
+ export * from './lib/components/icons/visibility-off/icon-visibility-off.module';
3396
+ export * from './lib/components/icons/visibility/icon-visibility.module';
3397
+ export * from './lib/components/icons/warning/icon-warning.module';
3398
+ export * from './lib/components/icons/1177/icon-1177.component';
3399
+ export * from './lib/components/icons/agent/icon-agent.component';
3400
+ export * from './lib/components/icons/arrow/icon-arrow.component';
3401
+ export * from './lib/components/icons/attention/icon-attention.component';
3402
+ export * from './lib/components/icons/blekinge/icon-blekinge.component';
3403
+ export * from './lib/components/icons/bookmark/icon-bookmark.component';
3404
+ export * from './lib/components/icons/calendar/icon-calendar.component';
3405
+ export * from './lib/components/icons/call/icon-call.component';
3406
+ export * from './lib/components/icons/call-active/icon-call-active.component';
3407
+ export * from './lib/components/icons/camera-off/icon-camera-off.component';
3408
+ export * from './lib/components/icons/camera-on/icon-camera-on.component';
3409
+ export * from './lib/components/icons/camera-switch/icon-camera-switch.component';
3410
+ export * from './lib/components/icons/chart-bar/icon-chart-bar.component';
3411
+ export * from './lib/components/icons/chart-line/icon-chart-line.component';
3412
+ export * from './lib/components/icons/check/icon-check.component';
3413
+ export * from './lib/components/icons/chevron/icon-chevron.component';
3414
+ export * from './lib/components/icons/chevron-bold/icon-chevron-bold.component';
3415
+ export * from './lib/components/icons/clipboard/icon-clipboard.component';
3416
+ export * from './lib/components/icons/clipboard-cross/icon-clipboard-cross.component';
3417
+ export * from './lib/components/icons/clipboard-text/icon-clipboard-text.component';
3418
+ export * from './lib/components/icons/clock/icon-clock.component';
3419
+ export * from './lib/components/icons/close/icon-close.component';
3420
+ export * from './lib/components/icons/close-bold/icon-close-bold.component';
3421
+ export * from './lib/components/icons/cog/icon-cog.component';
3422
+ export * from './lib/components/icons/computer/icon-computer.component';
3423
+ export * from './lib/components/icons/computer-inera/icon-computer-inera.component';
3424
+ export * from './lib/components/icons/copy-file/icon-copy-file.component';
3425
+ export * from './lib/components/icons/copy-link/icon-copy-link.component';
3426
+ export * from './lib/components/icons/doctors-bag/icon-doctors-bag.component';
3427
+ export * from './lib/components/icons/drag-n-drop/icon-drag-n-drop.component';
3428
+ export * from './lib/components/icons/ear-hearing/icon-ear-hearing.component';
3429
+ export * from './lib/components/icons/edit/icon-edit.component';
3430
+ export * from './lib/components/icons/email/icon-email.component';
3431
+ export * from './lib/components/icons/expand/icon-expand.component';
3432
+ export * from './lib/components/icons/external/icon-external.component';
3433
+ export * from './lib/components/icons/facebook/icon-facebook.component';
3434
+ export * from './lib/components/icons/file-excel/icon-file-excel.component';
3435
+ export * from './lib/components/icons/file-other/icon-file-other.component';
3436
+ export * from './lib/components/icons/file-pdf/icon-file-pdf.component';
3437
+ export * from './lib/components/icons/file-picture/icon-file-picture.component';
3438
+ export * from './lib/components/icons/file-powerpoint/icon-file-powerpoint.component';
3439
+ export * from './lib/components/icons/file-word/icon-file-word.component';
3440
+ export * from './lib/components/icons/find-care/icon-find-care.component';
3441
+ export * from './lib/components/icons/find-region/icon-find-region.component';
3442
+ export * from './lib/components/icons/gotland/icon-gotland.component';
3443
+ export * from './lib/components/icons/halland/icon-halland.component';
3444
+ export * from './lib/components/icons/house/icon-house.component';
3445
+ export * from './lib/components/icons/id-card/icon-id-card.component';
3446
+ export * from './lib/components/icons/id-card-locked/icon-id-card-locked.component';
3447
+ export * from './lib/components/icons/image/icon-image.component';
3448
+ export * from './lib/components/icons/inera/icon-inera.component';
3449
+ export * from './lib/components/icons/inera-legacy/icon-inera-legacy.component';
3450
+ export * from './lib/components/icons/information/icon-information.component';
3451
+ export * from './lib/components/icons/jamtland-harjedalen/icon-jamtland-harjedalen.component';
3452
+ export * from './lib/components/icons/jonkoping/icon-jonkoping.component';
3453
+ export * from './lib/components/icons/kalmar/icon-kalmar.component';
3454
+ export * from './lib/components/icons/kronoberg/icon-kronoberg.component';
3455
+ export * from './lib/components/icons/lightbulb/icon-lightbulb.component';
3456
+ export * from './lib/components/icons/linkedin/icon-linkedin.component';
3457
+ export * from './lib/components/icons/list/icon-list.component';
3458
+ export * from './lib/components/icons/lock/icon-lock.component';
3459
+ export * from './lib/components/icons/lock-open/icon-lock-open.component';
3460
+ export * from './lib/components/icons/log/icon-log.component';
3461
+ export * from './lib/components/icons/log-locked/icon-log-locked.component';
3462
+ export * from './lib/components/icons/menu/icon-menu.component';
3463
+ export * from './lib/components/icons/minus/icon-minus.component';
3464
+ export * from './lib/components/icons/norrbotten/icon-norrbotten.component';
3465
+ export * from './lib/components/icons/office-building/icon-office-building.component';
3466
+ export * from './lib/components/icons/orebro/icon-orebro.component';
3467
+ export * from './lib/components/icons/organization/icon-organization.component';
3468
+ export * from './lib/components/icons/ostergotland/icon-ostergotland.component';
3469
+ export * from './lib/components/icons/plus/icon-plus.component';
3470
+ export * from './lib/components/icons/print/icon-print.component';
3471
+ export * from './lib/components/icons/question/icon-question.component';
3472
+ export * from './lib/components/icons/reload/icon-reload.component';
3473
+ export * from './lib/components/icons/reply/icon-reply.component';
3474
+ export * from './lib/components/icons/search-inera/icon-search-inera.component';
3475
+ export * from './lib/components/icons/search/icon-search.component';
3476
+ export * from './lib/components/icons/shield-locked-primary/icon-shield-locked-primary.component';
3477
+ export * from './lib/components/icons/shield-locked/icon-shield-locked.component';
3478
+ export * from './lib/components/icons/skane/icon-skane.component';
3479
+ export * from './lib/components/icons/sormland/icon-sormland.component';
3480
+ export * from './lib/components/icons/star-filled/icon-star-filled.component';
3481
+ export * from './lib/components/icons/star/icon-star.component';
3482
+ export * from './lib/components/icons/stockholm/icon-stockholm.component';
3483
+ export * from './lib/components/icons/success/icon-success.component';
3484
+ export * from './lib/components/icons/swap/icon-swap.component';
3485
+ export * from './lib/components/icons/telephone/icon-telephone.component';
3486
+ export * from './lib/components/icons/test-tube-analyze/icon-test-tube-analyze.component';
3487
+ export * from './lib/components/icons/test-tube-empty/icon-test-tube-empty.component';
3488
+ export * from './lib/components/icons/test-tube/icon-test-tube.component';
3489
+ export * from './lib/components/icons/toggle-card/icon-toggle-card.component';
3490
+ export * from './lib/components/icons/toggle-list/icon-toggle-list.component';
3491
+ export * from './lib/components/icons/twitter/icon-twitter.component';
3492
+ export * from './lib/components/icons/uppsala/icon-uppsala.component';
3493
+ export * from './lib/components/icons/user/icon-user.component';
3494
+ export * from './lib/components/icons/vasterbotten/icon-vasterbotten.component';
3495
+ export * from './lib/components/icons/vasternorrland/icon-vasternorrland.component';
3496
+ export * from './lib/components/icons/vastmanland/icon-vastmanland.component';
3497
+ export * from './lib/components/icons/vastra-gotaland/icon-vastra-gotaland.component';
3498
+ export * from './lib/components/icons/video-off/icon-video-off.component';
3499
+ export * from './lib/components/icons/video-on/icon-video-on.component';
3500
+ export * from './lib/components/icons/video-switch/icon-video-switch.component';
3501
+ export * from './lib/components/icons/visibility-off/icon-visibility-off.component';
3502
+ export * from './lib/components/icons/visibility/icon-visibility.component';
3503
+ export * from './lib/components/icons/warning/icon-warning.component';
3504
+
3505
+ */
3220
3506
 
3221
3507
  /**
3222
3508
  * Generated bundle index. Do not edit.
@@ -3320,6 +3606,8 @@
3320
3606
  exports.IDTextareaModule = IDTextareaModule;
3321
3607
  exports.IDTimeComponent = IDTimeComponent;
3322
3608
  exports.IDTimeModule = IDTimeModule;
3609
+ exports.IDToggleComponent = IDToggleComponent;
3610
+ exports.IDToggleModule = IDToggleModule;
3323
3611
  exports.IDTooltipComponent = IDTooltipComponent;
3324
3612
  exports.IDTooltipModule = IDTooltipModule;
3325
3613