@inera/ids-angular 1.0.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/README.md +2 -23
  2. package/bundles/inera-ids-angular.umd.js +1387 -25
  3. package/bundles/inera-ids-angular.umd.js.map +1 -1
  4. package/esm2015/lib/classes/header/IDHeaderAvatar.js +18 -0
  5. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +2 -0
  6. package/esm2015/lib/classes/header/IDHeaderItem.js +15 -0
  7. package/esm2015/lib/classes/header/IDHeaderItemProps.js +2 -0
  8. package/esm2015/lib/classes/header/IDHeaderNavItem.js +30 -0
  9. package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +2 -0
  10. package/esm2015/lib/classes/icon/IDIcon.js +33 -0
  11. package/esm2015/lib/classes/icon/IDIconProps.js +2 -0
  12. package/esm2015/lib/classes/link/IDLink.js +26 -0
  13. package/esm2015/lib/classes/link/IDLinkFunction.js +17 -0
  14. package/esm2015/lib/classes/link/IDLinkRoute.js +30 -0
  15. package/esm2015/lib/classes/link/IDLinkWeb.js +24 -0
  16. package/esm2015/lib/classes/mobile/MobileMenuItem.js +35 -0
  17. package/esm2015/lib/classes/mobile/MobileMenuItemProps.js +2 -0
  18. package/esm2015/lib/classes/notification-badge.js +17 -0
  19. package/esm2015/lib/components/alert/alert.component.js +39 -0
  20. package/esm2015/lib/components/alert/alert.module.js +24 -0
  21. package/esm2015/lib/components/alert-global/alert-global.component.js +33 -0
  22. package/esm2015/lib/components/alert-global/alert-global.module.js +24 -0
  23. package/esm2015/lib/components/button/button.component.js +41 -0
  24. package/esm2015/lib/{button → components/button}/button.module.js +1 -1
  25. package/esm2015/lib/{button-group → components/button-group}/button-group.component.js +1 -1
  26. package/esm2015/lib/{button-group → components/button-group}/button-group.module.js +1 -1
  27. package/esm2015/lib/components/footer/footer.component.js +33 -0
  28. package/esm2015/lib/components/footer/footer.module.js +25 -0
  29. package/esm2015/lib/{form → components/form}/checkbox/checkbox.component.js +1 -1
  30. package/esm2015/lib/{form → components/form}/checkbox/checkbox.module.js +1 -1
  31. package/esm2015/lib/{form → components/form}/checkbox-group/checkbox-group.component.js +1 -1
  32. package/esm2015/lib/components/form/checkbox-group/checkbox-group.module.js +25 -0
  33. package/esm2015/lib/components/form/error-message/error-message.component.js +21 -0
  34. package/esm2015/lib/{form → components/form}/error-message/error-message.module.js +1 -1
  35. package/esm2015/lib/{form → components/form}/input/input.component.js +1 -1
  36. package/esm2015/lib/{form → components/form}/input/input.module.js +1 -1
  37. package/esm2015/lib/components/form/radio/radio-group.component.js +30 -0
  38. package/esm2015/lib/components/form/radio/radio.component.js +16 -0
  39. package/esm2015/lib/components/form/radio/radio.module.js +33 -0
  40. package/esm2015/lib/{form → components/form}/range/range.component.js +1 -1
  41. package/esm2015/lib/{form → components/form}/range/range.module.js +1 -1
  42. package/esm2015/lib/{form → components/form}/select/select.component.js +1 -1
  43. package/esm2015/lib/{form → components/form}/select/select.module.js +1 -1
  44. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +27 -0
  45. package/esm2015/lib/{form → components/form}/select-multiple/select-multiple.module.js +1 -1
  46. package/esm2015/lib/components/form/spinner/spinner.component.js +23 -0
  47. package/esm2015/lib/{form → components/form}/spinner/spinner.module.js +1 -1
  48. package/esm2015/lib/{form → components/form}/textarea/textarea.component.js +1 -1
  49. package/esm2015/lib/{form → components/form}/textarea/textarea.module.js +1 -1
  50. package/esm2015/lib/{form → components/form}/time/time.component.js +1 -1
  51. package/esm2015/lib/{form → components/form}/time/time.module.js +1 -1
  52. package/esm2015/lib/components/grid/column/column.component.js +27 -0
  53. package/esm2015/lib/{grid → components/grid}/column/column.module.js +1 -1
  54. package/esm2015/lib/components/grid/container/container.component.js +20 -0
  55. package/esm2015/lib/components/grid/container/container.module.js +22 -0
  56. package/esm2015/lib/{grid → components/grid}/row/row.component.js +1 -1
  57. package/esm2015/lib/{grid → components/grid}/row/row.module.js +1 -1
  58. package/esm2015/lib/components/header/header.component.js +50 -0
  59. package/esm2015/lib/components/header/header.module.js +25 -0
  60. package/esm2015/lib/components/icon/icon.component.js +41 -0
  61. package/esm2015/lib/{icon → components/icon}/icon.module.js +1 -1
  62. package/esm2015/lib/components/link/link.component.js +58 -0
  63. package/esm2015/lib/components/link/link.module.js +26 -0
  64. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +27 -0
  65. package/esm2015/lib/components/mobile/menu/mobile-menu.module.js +25 -0
  66. package/esm2015/lib/components/notification/badge/notification-badge.component.js +23 -0
  67. package/esm2015/lib/components/notification/badge/notification-badge.module.js +22 -0
  68. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +18 -0
  69. package/esm2015/lib/components/tabs/tab/tab.component.js +27 -0
  70. package/esm2015/lib/components/tabs/tabs.component.js +15 -0
  71. package/esm2015/lib/components/tabs/tabs.module.js +35 -0
  72. package/esm2015/lib/internals/anchor.component.js +75 -0
  73. package/esm2015/lib/internals/anchor.module.js +26 -0
  74. package/esm2015/public-api.js +80 -36
  75. package/fesm2015/inera-ids-angular.js +800 -15
  76. package/fesm2015/inera-ids-angular.js.map +1 -1
  77. package/lib/classes/header/IDHeaderAvatar.d.ts +10 -0
  78. package/lib/classes/header/IDHeaderAvatarProps.d.ts +7 -0
  79. package/lib/classes/header/IDHeaderItem.d.ts +8 -0
  80. package/lib/classes/header/IDHeaderItemProps.d.ts +6 -0
  81. package/lib/classes/header/IDHeaderNavItem.d.ts +13 -0
  82. package/lib/classes/header/IDHeaderNavItemProps.d.ts +11 -0
  83. package/lib/classes/icon/IDIcon.d.ts +14 -0
  84. package/lib/classes/icon/IDIconProps.d.ts +11 -0
  85. package/lib/classes/link/IDLink.d.ts +13 -0
  86. package/lib/classes/link/IDLinkFunction.d.ts +8 -0
  87. package/lib/classes/link/IDLinkRoute.d.ts +13 -0
  88. package/lib/classes/link/IDLinkWeb.d.ts +11 -0
  89. package/lib/classes/mobile/MobileMenuItem.d.ts +14 -0
  90. package/lib/classes/mobile/MobileMenuItemProps.d.ts +11 -0
  91. package/lib/classes/notification-badge.d.ts +9 -0
  92. package/lib/{alert → components/alert}/alert.component.d.ts +3 -1
  93. package/lib/{alert → components/alert}/alert.module.d.ts +2 -1
  94. package/lib/components/alert-global/alert-global.component.d.ts +12 -0
  95. package/lib/components/alert-global/alert-global.module.d.ts +9 -0
  96. package/lib/{button → components/button}/button.component.d.ts +0 -0
  97. package/lib/{button → components/button}/button.module.d.ts +0 -0
  98. package/lib/{button-group → components/button-group}/button-group.component.d.ts +0 -0
  99. package/lib/{button-group → components/button-group}/button-group.module.d.ts +0 -0
  100. package/lib/components/footer/footer.component.d.ts +12 -0
  101. package/lib/components/footer/footer.module.d.ts +10 -0
  102. package/lib/{form → components/form}/checkbox/checkbox.component.d.ts +0 -0
  103. package/lib/{form → components/form}/checkbox/checkbox.module.d.ts +0 -0
  104. package/lib/{form → components/form}/checkbox-group/checkbox-group.component.d.ts +0 -0
  105. package/lib/{form → components/form}/checkbox-group/checkbox-group.module.d.ts +0 -0
  106. package/lib/{form → components/form}/error-message/error-message.component.d.ts +0 -0
  107. package/lib/{form → components/form}/error-message/error-message.module.d.ts +0 -0
  108. package/lib/{form → components/form}/input/input.component.d.ts +0 -0
  109. package/lib/{form → components/form}/input/input.module.d.ts +0 -0
  110. package/lib/{form → components/form}/radio/radio-group.component.d.ts +0 -0
  111. package/lib/{form → components/form}/radio/radio.component.d.ts +1 -3
  112. package/lib/{form → components/form}/radio/radio.module.d.ts +0 -0
  113. package/lib/{form → components/form}/range/range.component.d.ts +0 -0
  114. package/lib/{form → components/form}/range/range.module.d.ts +0 -0
  115. package/lib/{form → components/form}/select/select.component.d.ts +0 -0
  116. package/lib/{form → components/form}/select/select.module.d.ts +0 -0
  117. package/lib/{form → components/form}/select-multiple/select-multiple.component.d.ts +0 -0
  118. package/lib/{form → components/form}/select-multiple/select-multiple.module.d.ts +0 -0
  119. package/lib/{form → components/form}/spinner/spinner.component.d.ts +0 -0
  120. package/lib/{form → components/form}/spinner/spinner.module.d.ts +0 -0
  121. package/lib/{form → components/form}/textarea/textarea.component.d.ts +0 -0
  122. package/lib/{form → components/form}/textarea/textarea.module.d.ts +0 -0
  123. package/lib/{form → components/form}/time/time.component.d.ts +0 -0
  124. package/lib/{form → components/form}/time/time.module.d.ts +0 -0
  125. package/lib/{grid → components/grid}/column/column.component.d.ts +0 -0
  126. package/lib/{grid → components/grid}/column/column.module.d.ts +0 -0
  127. package/lib/components/grid/container/container.component.d.ts +7 -0
  128. package/lib/components/grid/container/container.module.d.ts +8 -0
  129. package/lib/{grid → components/grid}/row/row.component.d.ts +0 -0
  130. package/lib/{grid → components/grid}/row/row.module.d.ts +0 -0
  131. package/lib/components/header/header.component.d.ts +20 -0
  132. package/lib/components/header/header.module.d.ts +10 -0
  133. package/lib/{icon → components/icon}/icon.component.d.ts +4 -4
  134. package/lib/{icon → components/icon}/icon.module.d.ts +0 -0
  135. package/lib/components/link/link.component.d.ts +21 -0
  136. package/lib/components/link/link.module.d.ts +11 -0
  137. package/lib/components/mobile/menu/mobile-menu.component.d.ts +10 -0
  138. package/lib/components/mobile/menu/mobile-menu.module.d.ts +10 -0
  139. package/lib/components/notification/badge/notification-badge.component.d.ts +8 -0
  140. package/lib/components/notification/badge/notification-badge.module.d.ts +8 -0
  141. package/lib/components/tabs/panel/tab-panel.component.d.ts +8 -0
  142. package/lib/components/tabs/tab/tab.component.d.ts +11 -0
  143. package/lib/components/tabs/tabs.component.d.ts +6 -0
  144. package/lib/components/tabs/tabs.module.d.ts +12 -0
  145. package/lib/internals/anchor.component.d.ts +30 -0
  146. package/lib/internals/anchor.module.d.ts +9 -0
  147. package/package.json +2 -2
  148. package/public-api.d.ts +68 -35
  149. package/esm2015/lib/alert/alert.component.js +0 -32
  150. package/esm2015/lib/alert/alert.module.js +0 -22
  151. package/esm2015/lib/button/button.component.js +0 -41
  152. package/esm2015/lib/form/checkbox-group/checkbox-group.module.js +0 -25
  153. package/esm2015/lib/form/error-message/error-message.component.js +0 -21
  154. package/esm2015/lib/form/radio/radio-group.component.js +0 -30
  155. package/esm2015/lib/form/radio/radio.component.js +0 -18
  156. package/esm2015/lib/form/radio/radio.module.js +0 -33
  157. package/esm2015/lib/form/select-multiple/select-multiple.component.js +0 -27
  158. package/esm2015/lib/form/spinner/spinner.component.js +0 -23
  159. package/esm2015/lib/grid/column/column.component.js +0 -27
  160. package/esm2015/lib/icon/icon.component.js +0 -37
@@ -1,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('@inera/ids-core/components/button/register'), require('@inera/ids-core/components/button-group/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('@angular/common'), 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')) :
3
- typeof define === 'function' && define.amd ? define('@inera/ids-angular', ['exports', '@angular/core', '@inera/ids-core/components/alert/register', '@inera/ids-core/components/button/register', '@inera/ids-core/components/button-group/register', '@inera/ids-core/components/icon/register', '@inera/ids-core/components/form/input/register', '@inera/ids-core/components/form/checkbox/register', '@angular/common', '@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'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.inera = global.inera || {}, global.inera["ids-angular"] = {}), global.ng.core, null, null, null, null, null, null, global.ng.common));
5
- })(this, (function (exports, i0, register, register$1, register$2, register$3, register$4, register$5, i1) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('@inera/ids-core/components/alert/register'), require('@inera/ids-core/components/alert-global/register'), require('@inera/ids-core/components/button/register'), require('@inera/ids-core/components/button-group/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('@angular/platform-browser'), require('@angular/router'), require('@inera/ids-core/components/notification/badge/register'), require('@inera/ids-core/components/mobile/menu/register'), require('@inera/ids-core/components/footer/register'), require('@inera/ids-core/components/header/register'), require('@inera/ids-core/components/tabs/register')) :
3
+ typeof define === 'function' && define.amd ? define('@inera/ids-angular', ['exports', '@angular/core', '@angular/common', '@inera/ids-core/components/alert/register', '@inera/ids-core/components/alert-global/register', '@inera/ids-core/components/button/register', '@inera/ids-core/components/button-group/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', '@angular/platform-browser', '@angular/router', '@inera/ids-core/components/notification/badge/register', '@inera/ids-core/components/mobile/menu/register', '@inera/ids-core/components/footer/register', '@inera/ids-core/components/header/register', '@inera/ids-core/components/tabs/register'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.inera = global.inera || {}, global.inera["ids-angular"] = {}), global.ng.core, global.ng.common, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, global.ng.platformBrowser, global.ng.router));
5
+ })(this, (function (exports, i0, i2, register, register$1, register$2, register$3, register$4, register$5, register$6, register$7, register$8, register$9, register$a, register$b, register$c, register$d, register$e, register$f, register$g, register$h, register$i, register$j, i1, i3) { 'use strict';
6
6
 
7
7
  function _interopNamespace(e) {
8
8
  if (e && e.__esModule) return e;
@@ -23,7 +23,9 @@
23
23
  }
24
24
 
25
25
  var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
26
+ var i2__namespace = /*#__PURE__*/_interopNamespace(i2);
26
27
  var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
28
+ var i3__namespace = /*#__PURE__*/_interopNamespace(i3);
27
29
 
28
30
  var IDAlertComponent = /** @class */ (function () {
29
31
  function IDAlertComponent() {
@@ -31,12 +33,14 @@
31
33
  this.headline = '';
32
34
  this.live = '';
33
35
  this.type = '';
36
+ this.srCloseText = '';
37
+ this.srIconTitle = '';
34
38
  this.closed = new i0.EventEmitter();
35
39
  }
36
40
  return IDAlertComponent;
37
41
  }());
38
42
  IDAlertComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
39
- IDAlertComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", headline: "headline", live: "live", type: "type" }, outputs: { closed: "closed" }, ngImport: i0__namespace, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [headline]=\"headline\"\n [live]=\"live\"\n [type]=\"type\"\n (closed)=\"closed.emit(true)\">\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"] });
43
+ IDAlertComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", headline: "headline", live: "live", type: "type", srCloseText: "srCloseText", srIconTitle: "srIconTitle" }, outputs: { closed: "closed" }, ngImport: i0__namespace, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [live]=\"live\"\n [type]=\"type\"\n [srclosetext]=\"srCloseText\"\n [srIconTitle]=\"srIconTitle\"\n (closed)=\"closed.emit(true)\">\n <h3 *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
40
44
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertComponent, decorators: [{
41
45
  type: i0.Component,
42
46
  args: [{
@@ -52,6 +56,10 @@
52
56
  type: i0.Input
53
57
  }], type: [{
54
58
  type: i0.Input
59
+ }], srCloseText: [{
60
+ type: i0.Input
61
+ }], srIconTitle: [{
62
+ type: i0.Input
55
63
  }], closed: [{
56
64
  type: i0.Output
57
65
  }] } });
@@ -62,8 +70,8 @@
62
70
  return IDAlertModule;
63
71
  }());
64
72
  IDAlertModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
65
- IDAlertModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, declarations: [IDAlertComponent], exports: [IDAlertComponent] });
66
- IDAlertModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule });
73
+ IDAlertModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, declarations: [IDAlertComponent], imports: [i2.CommonModule], exports: [IDAlertComponent] });
74
+ IDAlertModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, imports: [[i2.CommonModule]] });
67
75
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, decorators: [{
68
76
  type: i0.NgModule,
69
77
  args: [{
@@ -73,6 +81,60 @@
73
81
  exports: [
74
82
  IDAlertComponent
75
83
  ],
84
+ imports: [i2.CommonModule],
85
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
86
+ }]
87
+ }] });
88
+
89
+ var IDAlertGlobalComponent = /** @class */ (function () {
90
+ function IDAlertGlobalComponent() {
91
+ this.expanded = true;
92
+ this.headline = '';
93
+ this.showText = '';
94
+ this.hideText = '';
95
+ this.didToggleExpansion = new i0.EventEmitter();
96
+ }
97
+ return IDAlertGlobalComponent;
98
+ }());
99
+ IDAlertGlobalComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
100
+ IDAlertGlobalComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertGlobalComponent, selector: "id-alert-global", inputs: { expanded: "expanded", headline: "headline", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0__namespace, template: "<ids-alert-global \n [showtext]=\"showText\"\n [hidetext]=\"hideText\"\n [expanded]=\"expanded\"\n (closed)=\"didToggleExpansion.emit(true)\">\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-alert-global>", styles: [":host { display: block; }"], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
101
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalComponent, decorators: [{
102
+ type: i0.Component,
103
+ args: [{
104
+ selector: 'id-alert-global',
105
+ templateUrl: './alert-global.component.html',
106
+ styles: [':host { display: block; }']
107
+ }]
108
+ }], ctorParameters: function () { return []; }, propDecorators: { expanded: [{
109
+ type: i0.Input
110
+ }], headline: [{
111
+ type: i0.Input
112
+ }], showText: [{
113
+ type: i0.Input
114
+ }], hideText: [{
115
+ type: i0.Input
116
+ }], didToggleExpansion: [{
117
+ type: i0.Output
118
+ }] } });
119
+
120
+ var IDAlertGlobalModule = /** @class */ (function () {
121
+ function IDAlertGlobalModule() {
122
+ }
123
+ return IDAlertGlobalModule;
124
+ }());
125
+ IDAlertGlobalModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
126
+ IDAlertGlobalModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalModule, declarations: [IDAlertGlobalComponent], imports: [i2.CommonModule], exports: [IDAlertGlobalComponent] });
127
+ IDAlertGlobalModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalModule, imports: [[i2.CommonModule]] });
128
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalModule, decorators: [{
129
+ type: i0.NgModule,
130
+ args: [{
131
+ declarations: [
132
+ IDAlertGlobalComponent
133
+ ],
134
+ exports: [
135
+ IDAlertGlobalComponent
136
+ ],
137
+ imports: [i2.CommonModule],
76
138
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
77
139
  }]
78
140
  }] });
@@ -178,21 +240,91 @@
178
240
  }]
179
241
  }] });
180
242
 
243
+ var IDIcon = /** @class */ (function () {
244
+ function IDIcon(_props) {
245
+ this._props = _props;
246
+ }
247
+ Object.defineProperty(IDIcon.prototype, "name", {
248
+ get: function () {
249
+ return this._props.name;
250
+ },
251
+ enumerable: false,
252
+ configurable: true
253
+ });
254
+ Object.defineProperty(IDIcon.prototype, "title", {
255
+ get: function () {
256
+ return this._props.title;
257
+ },
258
+ enumerable: false,
259
+ configurable: true
260
+ });
261
+ Object.defineProperty(IDIcon.prototype, "color", {
262
+ get: function () {
263
+ return this._props.color;
264
+ },
265
+ enumerable: false,
266
+ configurable: true
267
+ });
268
+ Object.defineProperty(IDIcon.prototype, "color2", {
269
+ get: function () {
270
+ return this._props.color2;
271
+ },
272
+ enumerable: false,
273
+ configurable: true
274
+ });
275
+ Object.defineProperty(IDIcon.prototype, "size", {
276
+ get: function () {
277
+ return this._props.size;
278
+ },
279
+ enumerable: false,
280
+ configurable: true
281
+ });
282
+ Object.defineProperty(IDIcon.prototype, "width", {
283
+ get: function () {
284
+ return this._props.width;
285
+ },
286
+ enumerable: false,
287
+ configurable: true
288
+ });
289
+ Object.defineProperty(IDIcon.prototype, "height", {
290
+ get: function () {
291
+ return this._props.height;
292
+ },
293
+ enumerable: false,
294
+ configurable: true
295
+ });
296
+ Object.defineProperty(IDIcon.prototype, "colorpreset", {
297
+ get: function () {
298
+ return this._props.colorpreset;
299
+ },
300
+ enumerable: false,
301
+ configurable: true
302
+ });
303
+ Object.defineProperty(IDIcon.prototype, "padding", {
304
+ get: function () {
305
+ return this._props.padding;
306
+ },
307
+ enumerable: false,
308
+ configurable: true
309
+ });
310
+ return IDIcon;
311
+ }());
312
+
181
313
  var IDIconComponent = /** @class */ (function () {
182
314
  function IDIconComponent() {
183
315
  this.name = undefined;
184
316
  this.color = undefined;
185
317
  this.color2 = undefined;
318
+ this.colorpreset = undefined;
319
+ this.title = undefined;
186
320
  this.size = 'm';
187
321
  this.width = undefined;
188
322
  this.height = undefined;
189
323
  }
190
- IDIconComponent.prototype.ngOnInit = function () {
191
- };
192
324
  return IDIconComponent;
193
325
  }());
194
326
  IDIconComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
195
- IDIconComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", color: "color", color2: "color2", size: "size", width: "width", height: "height" }, ngImport: i0__namespace, template: "<ids-icon \n [name]=\"name\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\">\n</ids-icon >", encapsulation: i0__namespace.ViewEncapsulation.None });
327
+ IDIconComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", width: "width", height: "height" }, ngImport: i0__namespace, template: "<ids-icon \n [name]=\"name\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\"\n [colorpreset]=\"colorpreset\">\n</ids-icon >", encapsulation: i0__namespace.ViewEncapsulation.None });
196
328
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDIconComponent, decorators: [{
197
329
  type: i0.Component,
198
330
  args: [{
@@ -206,6 +338,10 @@
206
338
  type: i0.Input
207
339
  }], color2: [{
208
340
  type: i0.Input
341
+ }], colorpreset: [{
342
+ type: i0.Input
343
+ }], title: [{
344
+ type: i0.Input
209
345
  }], size: [{
210
346
  type: i0.Input
211
347
  }], width: [{
@@ -318,7 +454,7 @@
318
454
  return IDCheckboxGroupComponent;
319
455
  }());
320
456
  IDCheckboxGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
321
- IDCheckboxGroupComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, ngImport: i0__namespace, template: "<ids-checkbox-group>\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
457
+ IDCheckboxGroupComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, ngImport: i0__namespace, template: "<ids-checkbox-group>\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
322
458
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupComponent, decorators: [{
323
459
  type: i0.Component,
324
460
  args: [{
@@ -336,12 +472,12 @@
336
472
  return IDCheckboxGroupModule;
337
473
  }());
338
474
  IDCheckboxGroupModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
339
- IDCheckboxGroupModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, declarations: [IDCheckboxGroupComponent], imports: [i1.CommonModule], exports: [IDCheckboxGroupComponent] });
340
- IDCheckboxGroupModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, imports: [[i1.CommonModule]] });
475
+ IDCheckboxGroupModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, declarations: [IDCheckboxGroupComponent], imports: [i2.CommonModule], exports: [IDCheckboxGroupComponent] });
476
+ IDCheckboxGroupModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, imports: [[i2.CommonModule]] });
341
477
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, decorators: [{
342
478
  type: i0.NgModule,
343
479
  args: [{
344
- imports: [i1.CommonModule],
480
+ imports: [i2.CommonModule],
345
481
  declarations: [
346
482
  IDCheckboxGroupComponent
347
483
  ],
@@ -396,8 +532,6 @@
396
532
  var IDRadioComponent = /** @class */ (function () {
397
533
  function IDRadioComponent() {
398
534
  }
399
- IDRadioComponent.prototype.ngOnInit = function () {
400
- };
401
535
  return IDRadioComponent;
402
536
  }());
403
537
  IDRadioComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
@@ -421,7 +555,7 @@
421
555
  return IDRadioGroupComponent;
422
556
  }());
423
557
  IDRadioGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
424
- 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: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
558
+ 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 });
425
559
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioGroupComponent, decorators: [{
426
560
  type: i0.Component,
427
561
  args: [{
@@ -446,16 +580,16 @@
446
580
  }());
447
581
  IDRadioModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
448
582
  IDRadioModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, declarations: [IDRadioComponent,
449
- IDRadioGroupComponent], imports: [i1.CommonModule], exports: [IDRadioComponent,
583
+ IDRadioGroupComponent], imports: [i2.CommonModule], exports: [IDRadioComponent,
450
584
  IDRadioGroupComponent] });
451
585
  IDRadioModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, imports: [[
452
- i1.CommonModule
586
+ i2.CommonModule
453
587
  ]] });
454
588
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, decorators: [{
455
589
  type: i0.NgModule,
456
590
  args: [{
457
591
  imports: [
458
- i1.CommonModule
592
+ i2.CommonModule
459
593
  ],
460
594
  declarations: [
461
595
  IDRadioComponent,
@@ -555,7 +689,7 @@
555
689
  return IDSelectMultipleComponent;
556
690
  }());
557
691
  IDSelectMultipleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
558
- IDSelectMultipleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", placeholder: "placeholder" }, ngImport: i0__namespace, template: "<ids-select-multiple [label]=\"label\" [placeholder]=\"placeholder\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
692
+ IDSelectMultipleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", placeholder: "placeholder" }, ngImport: i0__namespace, template: "<ids-select-multiple [label]=\"label\" [placeholder]=\"placeholder\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
559
693
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleComponent, decorators: [{
560
694
  type: i0.Component,
561
695
  args: [{
@@ -577,15 +711,15 @@
577
711
  return IDSelectMultipleModule;
578
712
  }());
579
713
  IDSelectMultipleModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
580
- IDSelectMultipleModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, declarations: [IDSelectMultipleComponent], imports: [i1.CommonModule], exports: [IDSelectMultipleComponent] });
714
+ IDSelectMultipleModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, declarations: [IDSelectMultipleComponent], imports: [i2.CommonModule], exports: [IDSelectMultipleComponent] });
581
715
  IDSelectMultipleModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, imports: [[
582
- i1.CommonModule
716
+ i2.CommonModule
583
717
  ]] });
584
718
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, decorators: [{
585
719
  type: i0.NgModule,
586
720
  args: [{
587
721
  imports: [
588
- i1.CommonModule
722
+ i2.CommonModule
589
723
  ],
590
724
  declarations: [
591
725
  IDSelectMultipleComponent
@@ -759,7 +893,7 @@
759
893
  return IDColumnComponent;
760
894
  }());
761
895
  IDColumnComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDColumnComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
762
- IDColumnComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols", mobile: "mobile", align: "align" }, ngImport: i0__namespace, template: "<ids-col [cols]=\"cols\" [mobile]=\"mobile\" [align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-col>", styles: ["id-col { display: contents; }"], encapsulation: i0__namespace.ViewEncapsulation.None });
896
+ IDColumnComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols", mobile: "mobile", align: "align" }, ngImport: i0__namespace, template: "<ids-col \r\n [attr.cols]=\"cols\"\r\n [attr.mobile]=\"mobile\" \r\n [attr.align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-col>", styles: ["id-col { display: contents; }"], encapsulation: i0__namespace.ViewEncapsulation.None });
763
897
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDColumnComponent, decorators: [{
764
898
  type: i0.Component,
765
899
  args: [{
@@ -797,6 +931,1206 @@
797
931
  }]
798
932
  }] });
799
933
 
934
+ var IDContainerComponent = /** @class */ (function () {
935
+ function IDContainerComponent() {
936
+ this.fluid = false;
937
+ }
938
+ return IDContainerComponent;
939
+ }());
940
+ IDContainerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
941
+ IDContainerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDContainerComponent, selector: "id-container", inputs: { fluid: "fluid" }, ngImport: i0__namespace, template: "<ids-container [attr.fluid]=\"fluid\">\r\n <ng-content></ng-content>\r\n</ids-container>", encapsulation: i0__namespace.ViewEncapsulation.None });
942
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerComponent, decorators: [{
943
+ type: i0.Component,
944
+ args: [{
945
+ selector: 'id-container',
946
+ templateUrl: './container.component.html',
947
+ encapsulation: i0.ViewEncapsulation.None,
948
+ }]
949
+ }], ctorParameters: function () { return []; }, propDecorators: { fluid: [{
950
+ type: i0.Input
951
+ }] } });
952
+
953
+ var IDContainerModule = /** @class */ (function () {
954
+ function IDContainerModule() {
955
+ }
956
+ return IDContainerModule;
957
+ }());
958
+ IDContainerModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
959
+ IDContainerModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerModule, declarations: [IDContainerComponent], exports: [IDContainerComponent] });
960
+ IDContainerModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerModule });
961
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerModule, decorators: [{
962
+ type: i0.NgModule,
963
+ args: [{
964
+ declarations: [
965
+ IDContainerComponent
966
+ ],
967
+ exports: [
968
+ IDContainerComponent
969
+ ],
970
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
971
+ }]
972
+ }] });
973
+
974
+ var IDLinkComponent = /** @class */ (function () {
975
+ function IDLinkComponent() {
976
+ this.link = null;
977
+ this.notificationBadge = null;
978
+ this.prependIcon = null;
979
+ this.appendIcon = null;
980
+ this.underlined = false;
981
+ this.padding = null;
982
+ this.outline = null;
983
+ this.block = false;
984
+ this.color = undefined;
985
+ this.size = undefined;
986
+ this.activeicon = false;
987
+ this.external = false;
988
+ this.slot = undefined;
989
+ }
990
+ return IDLinkComponent;
991
+ }());
992
+ IDLinkComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
993
+ 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", external: "external", slot: "slot" }, host: { properties: { "class.ids-block": "this.block" } }, ngImport: i0__namespace, template: "<ids-tab>\n \n</ids-tab>" });
994
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, decorators: [{
995
+ type: i0.Component,
996
+ args: [{
997
+ selector: 'id-link',
998
+ templateUrl: './link.component.html'
999
+ }]
1000
+ }], ctorParameters: function () { return []; }, propDecorators: { link: [{
1001
+ type: i0.Input
1002
+ }], notificationBadge: [{
1003
+ type: i0.Input
1004
+ }], prependIcon: [{
1005
+ type: i0.Input
1006
+ }], appendIcon: [{
1007
+ type: i0.Input
1008
+ }], underlined: [{
1009
+ type: i0.Input
1010
+ }], padding: [{
1011
+ type: i0.Input
1012
+ }], outline: [{
1013
+ type: i0.Input
1014
+ }], block: [{
1015
+ type: i0.Input
1016
+ }, {
1017
+ type: i0.HostBinding,
1018
+ args: ['class.ids-block']
1019
+ }], color: [{
1020
+ type: i0.Input
1021
+ }], size: [{
1022
+ type: i0.Input
1023
+ }], activeicon: [{
1024
+ type: i0.Input
1025
+ }], external: [{
1026
+ type: i0.Input
1027
+ }], slot: [{
1028
+ type: i0.Input
1029
+ }] } });
1030
+
1031
+ /*! *****************************************************************************
1032
+ Copyright (c) Microsoft Corporation.
1033
+
1034
+ Permission to use, copy, modify, and/or distribute this software for any
1035
+ purpose with or without fee is hereby granted.
1036
+
1037
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1038
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1039
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1040
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1041
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1042
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1043
+ PERFORMANCE OF THIS SOFTWARE.
1044
+ ***************************************************************************** */
1045
+ /* global Reflect, Promise */
1046
+ var extendStatics = function (d, b) {
1047
+ extendStatics = Object.setPrototypeOf ||
1048
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1049
+ function (d, b) { for (var p in b)
1050
+ if (Object.prototype.hasOwnProperty.call(b, p))
1051
+ d[p] = b[p]; };
1052
+ return extendStatics(d, b);
1053
+ };
1054
+ function __extends(d, b) {
1055
+ if (typeof b !== "function" && b !== null)
1056
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
1057
+ extendStatics(d, b);
1058
+ function __() { this.constructor = d; }
1059
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
1060
+ }
1061
+ var __assign = function () {
1062
+ __assign = Object.assign || function __assign(t) {
1063
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
1064
+ s = arguments[i];
1065
+ for (var p in s)
1066
+ if (Object.prototype.hasOwnProperty.call(s, p))
1067
+ t[p] = s[p];
1068
+ }
1069
+ return t;
1070
+ };
1071
+ return __assign.apply(this, arguments);
1072
+ };
1073
+ function __rest(s, e) {
1074
+ var t = {};
1075
+ for (var p in s)
1076
+ if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
1077
+ t[p] = s[p];
1078
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
1079
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
1080
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
1081
+ t[p[i]] = s[p[i]];
1082
+ }
1083
+ return t;
1084
+ }
1085
+ function __decorate(decorators, target, key, desc) {
1086
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1087
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1088
+ r = Reflect.decorate(decorators, target, key, desc);
1089
+ else
1090
+ for (var i = decorators.length - 1; i >= 0; i--)
1091
+ if (d = decorators[i])
1092
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1093
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
1094
+ }
1095
+ function __param(paramIndex, decorator) {
1096
+ return function (target, key) { decorator(target, key, paramIndex); };
1097
+ }
1098
+ function __metadata(metadataKey, metadataValue) {
1099
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1100
+ return Reflect.metadata(metadataKey, metadataValue);
1101
+ }
1102
+ function __awaiter(thisArg, _arguments, P, generator) {
1103
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
1104
+ return new (P || (P = Promise))(function (resolve, reject) {
1105
+ function fulfilled(value) { try {
1106
+ step(generator.next(value));
1107
+ }
1108
+ catch (e) {
1109
+ reject(e);
1110
+ } }
1111
+ function rejected(value) { try {
1112
+ step(generator["throw"](value));
1113
+ }
1114
+ catch (e) {
1115
+ reject(e);
1116
+ } }
1117
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
1118
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
1119
+ });
1120
+ }
1121
+ function __generator(thisArg, body) {
1122
+ var _ = { label: 0, sent: function () { if (t[0] & 1)
1123
+ throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
1124
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
1125
+ function verb(n) { return function (v) { return step([n, v]); }; }
1126
+ function step(op) {
1127
+ if (f)
1128
+ throw new TypeError("Generator is already executing.");
1129
+ while (_)
1130
+ try {
1131
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
1132
+ return t;
1133
+ if (y = 0, t)
1134
+ op = [op[0] & 2, t.value];
1135
+ switch (op[0]) {
1136
+ case 0:
1137
+ case 1:
1138
+ t = op;
1139
+ break;
1140
+ case 4:
1141
+ _.label++;
1142
+ return { value: op[1], done: false };
1143
+ case 5:
1144
+ _.label++;
1145
+ y = op[1];
1146
+ op = [0];
1147
+ continue;
1148
+ case 7:
1149
+ op = _.ops.pop();
1150
+ _.trys.pop();
1151
+ continue;
1152
+ default:
1153
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
1154
+ _ = 0;
1155
+ continue;
1156
+ }
1157
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
1158
+ _.label = op[1];
1159
+ break;
1160
+ }
1161
+ if (op[0] === 6 && _.label < t[1]) {
1162
+ _.label = t[1];
1163
+ t = op;
1164
+ break;
1165
+ }
1166
+ if (t && _.label < t[2]) {
1167
+ _.label = t[2];
1168
+ _.ops.push(op);
1169
+ break;
1170
+ }
1171
+ if (t[2])
1172
+ _.ops.pop();
1173
+ _.trys.pop();
1174
+ continue;
1175
+ }
1176
+ op = body.call(thisArg, _);
1177
+ }
1178
+ catch (e) {
1179
+ op = [6, e];
1180
+ y = 0;
1181
+ }
1182
+ finally {
1183
+ f = t = 0;
1184
+ }
1185
+ if (op[0] & 5)
1186
+ throw op[1];
1187
+ return { value: op[0] ? op[1] : void 0, done: true };
1188
+ }
1189
+ }
1190
+ var __createBinding = Object.create ? (function (o, m, k, k2) {
1191
+ if (k2 === undefined)
1192
+ k2 = k;
1193
+ Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
1194
+ }) : (function (o, m, k, k2) {
1195
+ if (k2 === undefined)
1196
+ k2 = k;
1197
+ o[k2] = m[k];
1198
+ });
1199
+ function __exportStar(m, o) {
1200
+ for (var p in m)
1201
+ if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
1202
+ __createBinding(o, m, p);
1203
+ }
1204
+ function __values(o) {
1205
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
1206
+ if (m)
1207
+ return m.call(o);
1208
+ if (o && typeof o.length === "number")
1209
+ return {
1210
+ next: function () {
1211
+ if (o && i >= o.length)
1212
+ o = void 0;
1213
+ return { value: o && o[i++], done: !o };
1214
+ }
1215
+ };
1216
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
1217
+ }
1218
+ function __read(o, n) {
1219
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
1220
+ if (!m)
1221
+ return o;
1222
+ var i = m.call(o), r, ar = [], e;
1223
+ try {
1224
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
1225
+ ar.push(r.value);
1226
+ }
1227
+ catch (error) {
1228
+ e = { error: error };
1229
+ }
1230
+ finally {
1231
+ try {
1232
+ if (r && !r.done && (m = i["return"]))
1233
+ m.call(i);
1234
+ }
1235
+ finally {
1236
+ if (e)
1237
+ throw e.error;
1238
+ }
1239
+ }
1240
+ return ar;
1241
+ }
1242
+ /** @deprecated */
1243
+ function __spread() {
1244
+ for (var ar = [], i = 0; i < arguments.length; i++)
1245
+ ar = ar.concat(__read(arguments[i]));
1246
+ return ar;
1247
+ }
1248
+ /** @deprecated */
1249
+ function __spreadArrays() {
1250
+ for (var s = 0, i = 0, il = arguments.length; i < il; i++)
1251
+ s += arguments[i].length;
1252
+ for (var r = Array(s), k = 0, i = 0; i < il; i++)
1253
+ for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
1254
+ r[k] = a[j];
1255
+ return r;
1256
+ }
1257
+ function __spreadArray(to, from, pack) {
1258
+ if (pack || arguments.length === 2)
1259
+ for (var i = 0, l = from.length, ar; i < l; i++) {
1260
+ if (ar || !(i in from)) {
1261
+ if (!ar)
1262
+ ar = Array.prototype.slice.call(from, 0, i);
1263
+ ar[i] = from[i];
1264
+ }
1265
+ }
1266
+ return to.concat(ar || Array.prototype.slice.call(from));
1267
+ }
1268
+ function __await(v) {
1269
+ return this instanceof __await ? (this.v = v, this) : new __await(v);
1270
+ }
1271
+ function __asyncGenerator(thisArg, _arguments, generator) {
1272
+ if (!Symbol.asyncIterator)
1273
+ throw new TypeError("Symbol.asyncIterator is not defined.");
1274
+ var g = generator.apply(thisArg, _arguments || []), i, q = [];
1275
+ return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
1276
+ function verb(n) { if (g[n])
1277
+ i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
1278
+ function resume(n, v) { try {
1279
+ step(g[n](v));
1280
+ }
1281
+ catch (e) {
1282
+ settle(q[0][3], e);
1283
+ } }
1284
+ function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
1285
+ function fulfill(value) { resume("next", value); }
1286
+ function reject(value) { resume("throw", value); }
1287
+ function settle(f, v) { if (f(v), q.shift(), q.length)
1288
+ resume(q[0][0], q[0][1]); }
1289
+ }
1290
+ function __asyncDelegator(o) {
1291
+ var i, p;
1292
+ return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
1293
+ function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
1294
+ }
1295
+ function __asyncValues(o) {
1296
+ if (!Symbol.asyncIterator)
1297
+ throw new TypeError("Symbol.asyncIterator is not defined.");
1298
+ var m = o[Symbol.asyncIterator], i;
1299
+ return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
1300
+ function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
1301
+ function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
1302
+ }
1303
+ function __makeTemplateObject(cooked, raw) {
1304
+ if (Object.defineProperty) {
1305
+ Object.defineProperty(cooked, "raw", { value: raw });
1306
+ }
1307
+ else {
1308
+ cooked.raw = raw;
1309
+ }
1310
+ return cooked;
1311
+ }
1312
+ ;
1313
+ var __setModuleDefault = Object.create ? (function (o, v) {
1314
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
1315
+ }) : function (o, v) {
1316
+ o["default"] = v;
1317
+ };
1318
+ function __importStar(mod) {
1319
+ if (mod && mod.__esModule)
1320
+ return mod;
1321
+ var result = {};
1322
+ if (mod != null)
1323
+ for (var k in mod)
1324
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
1325
+ __createBinding(result, mod, k);
1326
+ __setModuleDefault(result, mod);
1327
+ return result;
1328
+ }
1329
+ function __importDefault(mod) {
1330
+ return (mod && mod.__esModule) ? mod : { default: mod };
1331
+ }
1332
+ function __classPrivateFieldGet(receiver, state, kind, f) {
1333
+ if (kind === "a" && !f)
1334
+ throw new TypeError("Private accessor was defined without a getter");
1335
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
1336
+ throw new TypeError("Cannot read private member from an object whose class did not declare it");
1337
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
1338
+ }
1339
+ function __classPrivateFieldSet(receiver, state, value, kind, f) {
1340
+ if (kind === "m")
1341
+ throw new TypeError("Private method is not writable");
1342
+ if (kind === "a" && !f)
1343
+ throw new TypeError("Private accessor was defined without a setter");
1344
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
1345
+ throw new TypeError("Cannot write private member to an object whose class did not declare it");
1346
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
1347
+ }
1348
+
1349
+ var IDLink = /** @class */ (function () {
1350
+ function IDLink(_label, _id, _classes) {
1351
+ this._label = _label;
1352
+ this._id = _id;
1353
+ this._classes = _classes;
1354
+ }
1355
+ Object.defineProperty(IDLink.prototype, "label", {
1356
+ get: function () {
1357
+ return this._label;
1358
+ },
1359
+ set: function (label) {
1360
+ this._label = label;
1361
+ },
1362
+ enumerable: false,
1363
+ configurable: true
1364
+ });
1365
+ Object.defineProperty(IDLink.prototype, "id", {
1366
+ get: function () {
1367
+ return this._id;
1368
+ },
1369
+ set: function (id) {
1370
+ this._id = id;
1371
+ },
1372
+ enumerable: false,
1373
+ configurable: true
1374
+ });
1375
+ Object.defineProperty(IDLink.prototype, "classes", {
1376
+ get: function () {
1377
+ return this._classes;
1378
+ },
1379
+ set: function (classes) {
1380
+ this._classes = classes;
1381
+ },
1382
+ enumerable: false,
1383
+ configurable: true
1384
+ });
1385
+ return IDLink;
1386
+ }());
1387
+
1388
+ var IDLinkFunction = /** @class */ (function (_super) {
1389
+ __extends(IDLinkFunction, _super);
1390
+ function IDLinkFunction(_label, _action, _id, _classes) {
1391
+ var _this = _super.call(this, _label, _id, _classes) || this;
1392
+ _this._action = _action;
1393
+ return _this;
1394
+ }
1395
+ Object.defineProperty(IDLinkFunction.prototype, "action", {
1396
+ get: function () {
1397
+ return this._action;
1398
+ },
1399
+ set: function (action) {
1400
+ this._action = action;
1401
+ },
1402
+ enumerable: false,
1403
+ configurable: true
1404
+ });
1405
+ IDLinkFunction.prototype.click = function () {
1406
+ this._action();
1407
+ };
1408
+ return IDLinkFunction;
1409
+ }(IDLink));
1410
+
1411
+ var IDLinkRoute = /** @class */ (function (_super) {
1412
+ __extends(IDLinkRoute, _super);
1413
+ function IDLinkRoute(_label, _route, _queries, router, _id, _classes) {
1414
+ if (_queries === void 0) { _queries = {}; }
1415
+ var _this = _super.call(this, _label, _id, _classes) || this;
1416
+ _this._route = _route;
1417
+ _this._queries = _queries;
1418
+ _this.router = router;
1419
+ return _this;
1420
+ }
1421
+ Object.defineProperty(IDLinkRoute.prototype, "route", {
1422
+ get: function () {
1423
+ return this._route;
1424
+ },
1425
+ set: function (route) {
1426
+ this._route = route;
1427
+ },
1428
+ enumerable: false,
1429
+ configurable: true
1430
+ });
1431
+ Object.defineProperty(IDLinkRoute.prototype, "queries", {
1432
+ get: function () {
1433
+ return this._queries;
1434
+ },
1435
+ set: function (_queries) {
1436
+ this._queries = _queries;
1437
+ },
1438
+ enumerable: false,
1439
+ configurable: true
1440
+ });
1441
+ IDLinkRoute.prototype.click = function () {
1442
+ if (this.router) {
1443
+ this.router.navigate([this.route]);
1444
+ }
1445
+ else {
1446
+ console.error('No router supplied in IcLinkRoute Object');
1447
+ }
1448
+ };
1449
+ return IDLinkRoute;
1450
+ }(IDLink));
1451
+
1452
+ var IDLinkWeb = /** @class */ (function (_super) {
1453
+ __extends(IDLinkWeb, _super);
1454
+ function IDLinkWeb(_label, _url, _target, _id, _classes) {
1455
+ var _this = _super.call(this, _label, _id, _classes) || this;
1456
+ _this._url = _url;
1457
+ _this._target = _target;
1458
+ return _this;
1459
+ }
1460
+ Object.defineProperty(IDLinkWeb.prototype, "target", {
1461
+ get: function () {
1462
+ return this._target;
1463
+ },
1464
+ set: function (target) {
1465
+ this._target = target;
1466
+ },
1467
+ enumerable: false,
1468
+ configurable: true
1469
+ });
1470
+ Object.defineProperty(IDLinkWeb.prototype, "url", {
1471
+ get: function () {
1472
+ return this._url;
1473
+ },
1474
+ set: function (url) {
1475
+ this._url = url;
1476
+ },
1477
+ enumerable: false,
1478
+ configurable: true
1479
+ });
1480
+ IDLinkWeb.prototype.click = function () {
1481
+ window.open(this._url, this.target);
1482
+ };
1483
+ return IDLinkWeb;
1484
+ }(IDLink));
1485
+
1486
+ var IDAnchorComponent = /** @class */ (function () {
1487
+ function IDAnchorComponent(sanitizer) {
1488
+ this.sanitizer = sanitizer;
1489
+ this.linkType = '';
1490
+ this.isLinkExternal = false;
1491
+ this.isLinkRoute = false;
1492
+ this.isLinkWeb = false;
1493
+ this.isLinkFunction = false;
1494
+ this.classes = '';
1495
+ this.scriptHref = this.sanitizer.bypassSecurityTrustUrl('javascript:');
1496
+ /** Apply classes to <a> element */
1497
+ this.contextClasses = [];
1498
+ }
1499
+ IDAnchorComponent.prototype.setLinkType = function () {
1500
+ this.isLinkRoute = this.link instanceof IDLinkRoute;
1501
+ this.isLinkWeb = this.link instanceof IDLinkWeb;
1502
+ this.isLinkFunction = this.link instanceof IDLinkFunction;
1503
+ if (this.link && this.isLinkWeb) {
1504
+ var weblink = this.link;
1505
+ this.isLinkExternal = weblink.target === '_blank' || weblink.target === 'blank';
1506
+ }
1507
+ else {
1508
+ this.isLinkExternal = false;
1509
+ }
1510
+ };
1511
+ IDAnchorComponent.prototype.setClasses = function () {
1512
+ if (this.link && this.link.classes) {
1513
+ this.classes = __spreadArray(__spreadArray([], __read(this.contextClasses)), __read(this.link.classes)).join(' ');
1514
+ }
1515
+ else {
1516
+ this.classes = this.contextClasses.join(' ');
1517
+ }
1518
+ };
1519
+ Object.defineProperty(IDAnchorComponent.prototype, "linkWeb", {
1520
+ get: function () {
1521
+ return this.link;
1522
+ },
1523
+ enumerable: false,
1524
+ configurable: true
1525
+ });
1526
+ Object.defineProperty(IDAnchorComponent.prototype, "linkRoute", {
1527
+ get: function () {
1528
+ return this.link;
1529
+ },
1530
+ enumerable: false,
1531
+ configurable: true
1532
+ });
1533
+ Object.defineProperty(IDAnchorComponent.prototype, "linkFunction", {
1534
+ get: function () {
1535
+ return this.link;
1536
+ },
1537
+ enumerable: false,
1538
+ configurable: true
1539
+ });
1540
+ IDAnchorComponent.prototype.ngOnChanges = function (changes) {
1541
+ if (changes.link) {
1542
+ this.setLinkType();
1543
+ this.setClasses();
1544
+ }
1545
+ if (changes.contextClasses) {
1546
+ this.setClasses();
1547
+ }
1548
+ };
1549
+ return IDAnchorComponent;
1550
+ }());
1551
+ IDAnchorComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorComponent, deps: [{ token: i1__namespace.DomSanitizer }], target: i0__namespace.ɵɵFactoryTarget.Component });
1552
+ IDAnchorComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAnchorComponent, selector: "id-anchor", inputs: { link: "link", contextClasses: "contextClasses" }, usesOnChanges: true, ngImport: i0__namespace, template: "<a *ngIf=\"isLinkRoute\" \n [attr.id]=\"linkRoute.id\"\n [class]=\"classes\" \n [routerLink]=\"linkRoute.route\"\n routerLinkActive=\"selected\"\n [queryParams]=\"linkRoute.queries\">\n {{linkRoute.label}}\n</a>\n<a *ngIf=\"isLinkWeb\" \n [attr.id]=\"linkWeb.id\"\n [class]=\"classes\" \n [href]=\"linkWeb.url\"\n [class.ic-link--external]=\"isLinkExternal\"\n [attr.target]=\"linkWeb.target\"\n [attr.rel]=\"isLinkExternal ? 'noopener' : null\">\n {{linkWeb.label}}\n</a>\n<a *ngIf=\"isLinkFunction\" \n [attr.id]=\"linkFunction.id\"\n [class]=\"classes\" \n [attr.href]=\"scriptHref\"\n (click)=\"linkFunction.action()\">\n {{linkFunction.label}}\n</a>", styles: ["a { color: inherit; text-decoration: inherit; font-size: inherit }"], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3__namespace.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }, { type: i3__namespace.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "routerLinkActive"], exportAs: ["routerLinkActive"] }] });
1553
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorComponent, decorators: [{
1554
+ type: i0.Component,
1555
+ args: [{
1556
+ selector: 'id-anchor',
1557
+ templateUrl: './anchor.component.html',
1558
+ styles: ['a { color: inherit; text-decoration: inherit; font-size: inherit }',]
1559
+ }]
1560
+ }], ctorParameters: function () { return [{ type: i1__namespace.DomSanitizer }]; }, propDecorators: { link: [{
1561
+ type: i0.Input
1562
+ }], contextClasses: [{
1563
+ type: i0.Input
1564
+ }] } });
1565
+
1566
+ var IDAnchorModule = /** @class */ (function () {
1567
+ function IDAnchorModule() {
1568
+ }
1569
+ return IDAnchorModule;
1570
+ }());
1571
+ IDAnchorModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1572
+ IDAnchorModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, declarations: [IDAnchorComponent], imports: [i2.CommonModule,
1573
+ i3.RouterModule], exports: [IDAnchorComponent] });
1574
+ IDAnchorModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, imports: [[
1575
+ i2.CommonModule,
1576
+ i3.RouterModule,
1577
+ ]] });
1578
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, decorators: [{
1579
+ type: i0.NgModule,
1580
+ args: [{
1581
+ declarations: [IDAnchorComponent],
1582
+ imports: [
1583
+ i2.CommonModule,
1584
+ i3.RouterModule,
1585
+ ],
1586
+ exports: [IDAnchorComponent]
1587
+ }]
1588
+ }] });
1589
+
1590
+ var IDLinkModule = /** @class */ (function () {
1591
+ function IDLinkModule() {
1592
+ }
1593
+ return IDLinkModule;
1594
+ }());
1595
+ IDLinkModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1596
+ 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] });
1597
+ IDLinkModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, imports: [[i2.CommonModule, IDAnchorModule]] });
1598
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, decorators: [{
1599
+ type: i0.NgModule,
1600
+ args: [{
1601
+ declarations: [
1602
+ IDLinkComponent
1603
+ ],
1604
+ imports: [i2.CommonModule, IDAnchorModule],
1605
+ exports: [
1606
+ IDLinkComponent
1607
+ ],
1608
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1609
+ }]
1610
+ }] });
1611
+
1612
+ var IDNotificationBadgeComponent = /** @class */ (function () {
1613
+ function IDNotificationBadgeComponent() {
1614
+ this.size = 'm';
1615
+ this.type = 'information';
1616
+ }
1617
+ return IDNotificationBadgeComponent;
1618
+ }());
1619
+ IDNotificationBadgeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1620
+ IDNotificationBadgeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size", type: "type" }, ngImport: i0__namespace, template: "<ids-notification-badge \n [attr.type]=\"type\"\n [attr.size]=\"size\">\n <ng-content></ng-content>\n</ids-notification-badge>", encapsulation: i0__namespace.ViewEncapsulation.None });
1621
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeComponent, decorators: [{
1622
+ type: i0.Component,
1623
+ args: [{
1624
+ selector: 'id-notification-badge',
1625
+ templateUrl: './notification-badge.component.html',
1626
+ encapsulation: i0.ViewEncapsulation.None,
1627
+ }]
1628
+ }], ctorParameters: function () { return []; }, propDecorators: { size: [{
1629
+ type: i0.Input
1630
+ }], type: [{
1631
+ type: i0.Input
1632
+ }] } });
1633
+
1634
+ var IDNotificationBadgeModule = /** @class */ (function () {
1635
+ function IDNotificationBadgeModule() {
1636
+ }
1637
+ return IDNotificationBadgeModule;
1638
+ }());
1639
+ IDNotificationBadgeModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1640
+ IDNotificationBadgeModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule, declarations: [IDNotificationBadgeComponent], exports: [IDNotificationBadgeComponent] });
1641
+ IDNotificationBadgeModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule });
1642
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule, decorators: [{
1643
+ type: i0.NgModule,
1644
+ args: [{
1645
+ declarations: [
1646
+ IDNotificationBadgeComponent
1647
+ ],
1648
+ exports: [
1649
+ IDNotificationBadgeComponent
1650
+ ],
1651
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1652
+ }]
1653
+ }] });
1654
+
1655
+ var IDNotificationBadge = /** @class */ (function () {
1656
+ function IDNotificationBadge(_value, _size, _type) {
1657
+ this._value = _value;
1658
+ this._size = _size;
1659
+ this._type = _type;
1660
+ }
1661
+ Object.defineProperty(IDNotificationBadge.prototype, "value", {
1662
+ get: function () {
1663
+ return this._value;
1664
+ },
1665
+ enumerable: false,
1666
+ configurable: true
1667
+ });
1668
+ Object.defineProperty(IDNotificationBadge.prototype, "size", {
1669
+ get: function () {
1670
+ return this._size;
1671
+ },
1672
+ enumerable: false,
1673
+ configurable: true
1674
+ });
1675
+ Object.defineProperty(IDNotificationBadge.prototype, "type", {
1676
+ get: function () {
1677
+ return this._type;
1678
+ },
1679
+ enumerable: false,
1680
+ configurable: true
1681
+ });
1682
+ return IDNotificationBadge;
1683
+ }());
1684
+
1685
+ var IDMobileMenuComponent = /** @class */ (function () {
1686
+ function IDMobileMenuComponent() {
1687
+ this.type = undefined;
1688
+ this.variation = undefined;
1689
+ this.items = undefined;
1690
+ }
1691
+ return IDMobileMenuComponent;
1692
+ }());
1693
+ IDMobileMenuComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1694
+ 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"] }] });
1695
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuComponent, decorators: [{
1696
+ type: i0.Component,
1697
+ args: [{
1698
+ selector: 'id-mobile-menu',
1699
+ templateUrl: './mobile-menu.component.html'
1700
+ }]
1701
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1702
+ type: i0.Input
1703
+ }], variation: [{
1704
+ type: i0.Input
1705
+ }], items: [{
1706
+ type: i0.Input
1707
+ }] } });
1708
+
1709
+ var IDMobileMenuModule = /** @class */ (function () {
1710
+ function IDMobileMenuModule() {
1711
+ }
1712
+ return IDMobileMenuModule;
1713
+ }());
1714
+ IDMobileMenuModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1715
+ IDMobileMenuModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuModule, declarations: [IDMobileMenuComponent], imports: [i2.CommonModule, IDAnchorModule], exports: [IDMobileMenuComponent] });
1716
+ IDMobileMenuModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuModule, imports: [[i2.CommonModule, IDAnchorModule]] });
1717
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuModule, decorators: [{
1718
+ type: i0.NgModule,
1719
+ args: [{
1720
+ declarations: [
1721
+ IDMobileMenuComponent
1722
+ ],
1723
+ exports: [
1724
+ IDMobileMenuComponent
1725
+ ],
1726
+ imports: [i2.CommonModule, IDAnchorModule],
1727
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1728
+ }]
1729
+ }] });
1730
+
1731
+ var IDMobileMenuItem = /** @class */ (function () {
1732
+ function IDMobileMenuItem(_props) {
1733
+ this._props = _props;
1734
+ }
1735
+ Object.defineProperty(IDMobileMenuItem.prototype, "headline", {
1736
+ get: function () {
1737
+ return this._props.headline;
1738
+ },
1739
+ enumerable: false,
1740
+ configurable: true
1741
+ });
1742
+ Object.defineProperty(IDMobileMenuItem.prototype, "link", {
1743
+ get: function () {
1744
+ return this._props.link;
1745
+ },
1746
+ enumerable: false,
1747
+ configurable: true
1748
+ });
1749
+ Object.defineProperty(IDMobileMenuItem.prototype, "items", {
1750
+ get: function () {
1751
+ return this._props.items;
1752
+ },
1753
+ enumerable: false,
1754
+ configurable: true
1755
+ });
1756
+ Object.defineProperty(IDMobileMenuItem.prototype, "expanded", {
1757
+ get: function () {
1758
+ return this._props.expanded;
1759
+ },
1760
+ enumerable: false,
1761
+ configurable: true
1762
+ });
1763
+ Object.defineProperty(IDMobileMenuItem.prototype, "secondary", {
1764
+ get: function () {
1765
+ return this._props.secondary;
1766
+ },
1767
+ enumerable: false,
1768
+ configurable: true
1769
+ });
1770
+ Object.defineProperty(IDMobileMenuItem.prototype, "active", {
1771
+ get: function () {
1772
+ return this._props.active;
1773
+ },
1774
+ enumerable: false,
1775
+ configurable: true
1776
+ });
1777
+ Object.defineProperty(IDMobileMenuItem.prototype, "variation", {
1778
+ get: function () {
1779
+ return this._props.variation;
1780
+ },
1781
+ enumerable: false,
1782
+ configurable: true
1783
+ });
1784
+ Object.defineProperty(IDMobileMenuItem.prototype, "expansionToggled", {
1785
+ get: function () {
1786
+ return this._props.expansionToggled;
1787
+ },
1788
+ enumerable: false,
1789
+ configurable: true
1790
+ });
1791
+ IDMobileMenuItem.prototype.togleExpansion = function () {
1792
+ if (this._props.expansionToggled) {
1793
+ this._props.expansionToggled();
1794
+ }
1795
+ };
1796
+ return IDMobileMenuItem;
1797
+ }());
1798
+
1799
+ var IDFooterComponent = /** @class */ (function () {
1800
+ function IDFooterComponent() {
1801
+ this.type = '';
1802
+ this.headline = '';
1803
+ this.servicename = '';
1804
+ this.subheadline = '';
1805
+ this.mobileMenuItems = undefined;
1806
+ }
1807
+ return IDFooterComponent;
1808
+ }());
1809
+ IDFooterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1810
+ 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", mobileMenuItems: "mobileMenuItems" }, ngImport: i0__namespace, template: "<ids-footer \n [type]=\"type\"\n [headline]=\"headline\"\n [subheadline]=\"subheadline\"\n [servicename]=\"servicename\">\n <ng-content></ng-content>\n <ids-mobile-menu \n *ngIf=\"mobileMenuItems\"\n [type]=\"type\">\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu>\n</ids-footer>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1811
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterComponent, decorators: [{
1812
+ type: i0.Component,
1813
+ args: [{
1814
+ selector: 'id-footer',
1815
+ templateUrl: './footer.component.html'
1816
+ }]
1817
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1818
+ type: i0.Input
1819
+ }], headline: [{
1820
+ type: i0.Input
1821
+ }], servicename: [{
1822
+ type: i0.Input
1823
+ }], subheadline: [{
1824
+ type: i0.Input
1825
+ }], mobileMenuItems: [{
1826
+ type: i0.Input
1827
+ }] } });
1828
+
1829
+ var IDFooterModule = /** @class */ (function () {
1830
+ function IDFooterModule() {
1831
+ }
1832
+ return IDFooterModule;
1833
+ }());
1834
+ IDFooterModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1835
+ IDFooterModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterModule, declarations: [IDFooterComponent], imports: [i2.CommonModule, IDAnchorModule], exports: [IDFooterComponent] });
1836
+ IDFooterModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterModule, imports: [[i2.CommonModule, IDAnchorModule]] });
1837
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterModule, decorators: [{
1838
+ type: i0.NgModule,
1839
+ args: [{
1840
+ declarations: [
1841
+ IDFooterComponent
1842
+ ],
1843
+ exports: [
1844
+ IDFooterComponent
1845
+ ],
1846
+ imports: [i2.CommonModule, IDAnchorModule],
1847
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1848
+ }]
1849
+ }] });
1850
+
1851
+ var IDHeaderComponent = /** @class */ (function () {
1852
+ function IDHeaderComponent() {
1853
+ this.type = '';
1854
+ this.brandtext = '';
1855
+ this.hideRegionPicker = false;
1856
+ this.hideBrand = false;
1857
+ this.pickRegionText = 'Välj region';
1858
+ this.srLogoLabel = 'Logotyp';
1859
+ }
1860
+ return IDHeaderComponent;
1861
+ }());
1862
+ IDHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1863
+ IDHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type", brandtext: "brandtext", hideRegionPicker: "hideRegionPicker", hideBrand: "hideBrand", pickRegionText: "pickRegionText", regionIcon: "regionIcon", width: "width", srLogoLabel: "srLogoLabel", items: "items", avatar: "avatar", navItems: "navItems", mobileItems: "mobileItems", mobileMenuItems: "mobileMenuItems" }, ngImport: i0__namespace, template: "<ids-header \r\n [type]=\"type\"\r\n [attr.brandtext]=\"brandtext\"\r\n [hideregionpicker]=\"hideRegionPicker\"\r\n [hidebrand]=\"hideBrand\"\r\n [pickregiontext]=\"pickRegionText\"\r\n [regionicon]=\"regionIcon\"\r\n [width]=\"width\"\r\n [srlogolabel]=\"srLogoLabel\">\r\n\r\n <ids-header-item *ngFor=\"let item of items\" \r\n [icon]=\"item.iconName\" \r\n [mobile]=\"item.mobile\">\r\n <id-anchor [link]=\"item.link\"></id-anchor>\r\n </ids-header-item>\r\n\r\n <ids-header-nav *ngIf=\"navItems || mobileItems\">\r\n <ids-header-nav-item *ngFor=\"let navItem of navItems; let i = index\" [label]=\"navItem.label\" [link]=\"navItem.link\">\r\n <id-anchor *ngIf=\"navItem.link\" [link]=\"navItem.link\"></id-anchor>\r\n <ids-link slot=\"col-1\" [block]=\"true\" *ngFor=\"let link of navItem.col1\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link> \r\n <ids-link slot=\"col-2\" [block]=\"true\" *ngFor=\"let link of navItem.col2\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <ids-link slot=\"col-3\" [block]=\"true\" *ngFor=\"let link of navItem.col3\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <div slot=\"col-4\">\r\n <h2 style=\"margin-bottom: 15px; color: var(--header-nav-item-heading_color);\" class=\"h2\">{{navItem.headline}}</h2>\r\n <p class=\"body\">{{navItem.paragraph}}</p>\r\n <id-anchor>{{navItem.paragraphLink}}</id-anchor>\r\n </div>\r\n </ids-header-nav-item>\r\n <ids-header-mobile-item *ngFor=\"let mobileItem of mobileItems\" [icon]=\"mobileItem.iconName\">\r\n <id-anchor [link]=\"mobileItem.link\"></id-anchor>\r\n </ids-header-mobile-item>\r\n \r\n <ids-header-mobile-menu *ngIf=\"mobileMenuItems\">\r\n Menu\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n </ids-header-nav>\r\n\r\n <ids-header-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatar]\"></ng-content>\r\n <span slot=\"avatar-text\">{{avatar.serviceName}}</span>\r\n <id-anchor [link]=\"avatar.linkLeft\" slot=\"avatar-left\"></id-anchor>\r\n <id-anchor [link]=\"avatar.linkRight\" slot=\"avatar-right\"></id-anchor>\r\n </ids-header-avatar>\r\n\r\n <ng-content></ng-content>\r\n\r\n <ids-header-mobile-menu \r\n *ngIf=\"type !== '1177' && (mobileMenuItems || avatar)\"\r\n [type]=\"type\">\r\n <ids-mobile-menu-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatarMobile]\"></ng-content>\r\n </ids-mobile-menu-avatar>\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n</ids-header>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1864
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderComponent, decorators: [{
1865
+ type: i0.Component,
1866
+ args: [{
1867
+ selector: 'id-header',
1868
+ templateUrl: './header.component.html'
1869
+ }]
1870
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1871
+ type: i0.Input
1872
+ }], brandtext: [{
1873
+ type: i0.Input
1874
+ }], hideRegionPicker: [{
1875
+ type: i0.Input
1876
+ }], hideBrand: [{
1877
+ type: i0.Input
1878
+ }], pickRegionText: [{
1879
+ type: i0.Input
1880
+ }], regionIcon: [{
1881
+ type: i0.Input
1882
+ }], width: [{
1883
+ type: i0.Input
1884
+ }], srLogoLabel: [{
1885
+ type: i0.Input
1886
+ }], items: [{
1887
+ type: i0.Input
1888
+ }], avatar: [{
1889
+ type: i0.Input
1890
+ }], navItems: [{
1891
+ type: i0.Input
1892
+ }], mobileItems: [{
1893
+ type: i0.Input
1894
+ }], mobileMenuItems: [{
1895
+ type: i0.Input
1896
+ }] } });
1897
+
1898
+ var IDHeaderModule = /** @class */ (function () {
1899
+ function IDHeaderModule() {
1900
+ }
1901
+ return IDHeaderModule;
1902
+ }());
1903
+ IDHeaderModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1904
+ 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] });
1905
+ IDHeaderModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, imports: [[i2.CommonModule, IDAnchorModule]] });
1906
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, decorators: [{
1907
+ type: i0.NgModule,
1908
+ args: [{
1909
+ declarations: [
1910
+ IDHeaderComponent
1911
+ ],
1912
+ exports: [
1913
+ IDHeaderComponent
1914
+ ],
1915
+ imports: [i2.CommonModule, IDAnchorModule],
1916
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1917
+ }]
1918
+ }] });
1919
+
1920
+ var IDHeaderItem = /** @class */ (function () {
1921
+ function IDHeaderItem(_props) {
1922
+ this._props = _props;
1923
+ }
1924
+ Object.defineProperty(IDHeaderItem.prototype, "iconName", {
1925
+ get: function () {
1926
+ return this._props.iconName;
1927
+ },
1928
+ enumerable: false,
1929
+ configurable: true
1930
+ });
1931
+ Object.defineProperty(IDHeaderItem.prototype, "link", {
1932
+ get: function () {
1933
+ return this._props.link;
1934
+ },
1935
+ enumerable: false,
1936
+ configurable: true
1937
+ });
1938
+ Object.defineProperty(IDHeaderItem.prototype, "mobile", {
1939
+ get: function () {
1940
+ return this._props.mobile;
1941
+ },
1942
+ enumerable: false,
1943
+ configurable: true
1944
+ });
1945
+ return IDHeaderItem;
1946
+ }());
1947
+
1948
+ var IDHeaderAvatar = /** @class */ (function () {
1949
+ function IDHeaderAvatar(_props) {
1950
+ this._props = _props;
1951
+ }
1952
+ Object.defineProperty(IDHeaderAvatar.prototype, "username", {
1953
+ get: function () {
1954
+ return this._props.username;
1955
+ },
1956
+ enumerable: false,
1957
+ configurable: true
1958
+ });
1959
+ Object.defineProperty(IDHeaderAvatar.prototype, "linkLeft", {
1960
+ get: function () {
1961
+ return this._props.linkLeft;
1962
+ },
1963
+ enumerable: false,
1964
+ configurable: true
1965
+ });
1966
+ Object.defineProperty(IDHeaderAvatar.prototype, "linkRight", {
1967
+ get: function () {
1968
+ return this._props.linkRight;
1969
+ },
1970
+ enumerable: false,
1971
+ configurable: true
1972
+ });
1973
+ Object.defineProperty(IDHeaderAvatar.prototype, "serviceName", {
1974
+ get: function () {
1975
+ return this._props.serviceName;
1976
+ },
1977
+ enumerable: false,
1978
+ configurable: true
1979
+ });
1980
+ return IDHeaderAvatar;
1981
+ }());
1982
+
1983
+ var IDHeaderNavItem = /** @class */ (function () {
1984
+ function IDHeaderNavItem(_props) {
1985
+ this._props = _props;
1986
+ }
1987
+ Object.defineProperty(IDHeaderNavItem.prototype, "label", {
1988
+ get: function () {
1989
+ return this._props.label;
1990
+ },
1991
+ enumerable: false,
1992
+ configurable: true
1993
+ });
1994
+ Object.defineProperty(IDHeaderNavItem.prototype, "col1", {
1995
+ get: function () {
1996
+ return this._props.col1;
1997
+ },
1998
+ enumerable: false,
1999
+ configurable: true
2000
+ });
2001
+ Object.defineProperty(IDHeaderNavItem.prototype, "col2", {
2002
+ get: function () {
2003
+ return this._props.col2;
2004
+ },
2005
+ enumerable: false,
2006
+ configurable: true
2007
+ });
2008
+ Object.defineProperty(IDHeaderNavItem.prototype, "col3", {
2009
+ get: function () {
2010
+ return this._props.col3;
2011
+ },
2012
+ enumerable: false,
2013
+ configurable: true
2014
+ });
2015
+ Object.defineProperty(IDHeaderNavItem.prototype, "headline", {
2016
+ get: function () {
2017
+ return this._props.headline;
2018
+ },
2019
+ enumerable: false,
2020
+ configurable: true
2021
+ });
2022
+ Object.defineProperty(IDHeaderNavItem.prototype, "paragraph", {
2023
+ get: function () {
2024
+ return this._props.paragraph;
2025
+ },
2026
+ enumerable: false,
2027
+ configurable: true
2028
+ });
2029
+ Object.defineProperty(IDHeaderNavItem.prototype, "link", {
2030
+ get: function () {
2031
+ return this._props.link;
2032
+ },
2033
+ enumerable: false,
2034
+ configurable: true
2035
+ });
2036
+ Object.defineProperty(IDHeaderNavItem.prototype, "paragraphLink", {
2037
+ get: function () {
2038
+ return this._props.pragraphLink;
2039
+ },
2040
+ enumerable: false,
2041
+ configurable: true
2042
+ });
2043
+ return IDHeaderNavItem;
2044
+ }());
2045
+
2046
+ var IDTabsComponent = /** @class */ (function () {
2047
+ function IDTabsComponent() {
2048
+ }
2049
+ return IDTabsComponent;
2050
+ }());
2051
+ IDTabsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2052
+ IDTabsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabsComponent, selector: "id-tabs", ngImport: i0__namespace, template: "<ids-tabs>\n <ng-content></ng-content>\n</ids-tabs>" });
2053
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsComponent, decorators: [{
2054
+ type: i0.Component,
2055
+ args: [{
2056
+ selector: 'id-tabs',
2057
+ templateUrl: './tabs.component.html'
2058
+ }]
2059
+ }], ctorParameters: function () { return []; } });
2060
+
2061
+ var IDTabPanelComponent = /** @class */ (function () {
2062
+ function IDTabPanelComponent(elementRef) {
2063
+ this.elementRef = elementRef;
2064
+ elementRef.nativeElement.setAttribute('slot', 'tab-panel');
2065
+ }
2066
+ return IDTabPanelComponent;
2067
+ }());
2068
+ 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 });
2069
+ IDTabPanelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", ngImport: i0__namespace, template: "<ids-tab-panel>\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
2070
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabPanelComponent, decorators: [{
2071
+ type: i0.Component,
2072
+ args: [{
2073
+ selector: 'id-tab-panel',
2074
+ templateUrl: './tab-panel.component.html'
2075
+ }]
2076
+ }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; } });
2077
+
2078
+ var IDTabComponent = /** @class */ (function () {
2079
+ function IDTabComponent(elementRef) {
2080
+ this.elementRef = elementRef;
2081
+ this.label = '';
2082
+ this.icon = '';
2083
+ this.selected = false;
2084
+ elementRef.nativeElement.setAttribute('slot', 'tab');
2085
+ }
2086
+ return IDTabComponent;
2087
+ }());
2088
+ 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 });
2089
+ IDTabComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { label: "label", icon: "icon", selected: "selected" }, ngImport: i0__namespace, template: "<ids-tab\n [label]=\"label\"\n [attr.icon]=\"icon\"\n [attr.selected]=\"selected ? '':null\">\n</ids-tab>" });
2090
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabComponent, decorators: [{
2091
+ type: i0.Component,
2092
+ args: [{
2093
+ selector: 'id-tab',
2094
+ templateUrl: './tab.component.html'
2095
+ }]
2096
+ }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; }, propDecorators: { label: [{
2097
+ type: i0.Input
2098
+ }], icon: [{
2099
+ type: i0.Input
2100
+ }], selected: [{
2101
+ type: i0.Input
2102
+ }] } });
2103
+
2104
+ var IDTabsModule = /** @class */ (function () {
2105
+ function IDTabsModule() {
2106
+ }
2107
+ return IDTabsModule;
2108
+ }());
2109
+ IDTabsModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2110
+ IDTabsModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, declarations: [IDTabsComponent,
2111
+ IDTabComponent,
2112
+ IDTabPanelComponent], imports: [i2.CommonModule], exports: [IDTabsComponent,
2113
+ IDTabComponent,
2114
+ IDTabPanelComponent] });
2115
+ IDTabsModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, imports: [[i2.CommonModule]] });
2116
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, decorators: [{
2117
+ type: i0.NgModule,
2118
+ args: [{
2119
+ declarations: [
2120
+ IDTabsComponent,
2121
+ IDTabComponent,
2122
+ IDTabPanelComponent
2123
+ ],
2124
+ imports: [i2.CommonModule],
2125
+ exports: [
2126
+ IDTabsComponent,
2127
+ IDTabComponent,
2128
+ IDTabPanelComponent
2129
+ ],
2130
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
2131
+ }]
2132
+ }] });
2133
+
800
2134
  /*
801
2135
  * Public API Surface of ids-angular
802
2136
  */
@@ -806,6 +2140,8 @@
806
2140
  */
807
2141
 
808
2142
  exports.IDAlertComponent = IDAlertComponent;
2143
+ exports.IDAlertGlobalComponent = IDAlertGlobalComponent;
2144
+ exports.IDAlertGlobalModule = IDAlertGlobalModule;
809
2145
  exports.IDAlertModule = IDAlertModule;
810
2146
  exports.IDButtonComponent = IDButtonComponent;
811
2147
  exports.IDButtonGroupComponent = IDButtonGroupComponent;
@@ -817,12 +2153,34 @@
817
2153
  exports.IDCheckboxModule = IDCheckboxModule;
818
2154
  exports.IDColumnComponent = IDColumnComponent;
819
2155
  exports.IDColumnModule = IDColumnModule;
2156
+ exports.IDContainerComponent = IDContainerComponent;
2157
+ exports.IDContainerModule = IDContainerModule;
820
2158
  exports.IDErrorMessageComponent = IDErrorMessageComponent;
821
2159
  exports.IDErrorMessageModule = IDErrorMessageModule;
2160
+ exports.IDFooterComponent = IDFooterComponent;
2161
+ exports.IDFooterModule = IDFooterModule;
2162
+ exports.IDHeaderAvatar = IDHeaderAvatar;
2163
+ exports.IDHeaderComponent = IDHeaderComponent;
2164
+ exports.IDHeaderItem = IDHeaderItem;
2165
+ exports.IDHeaderModule = IDHeaderModule;
2166
+ exports.IDHeaderNavItem = IDHeaderNavItem;
2167
+ exports.IDIcon = IDIcon;
822
2168
  exports.IDIconComponent = IDIconComponent;
823
2169
  exports.IDIconModule = IDIconModule;
824
2170
  exports.IDInputComponent = IDInputComponent;
825
2171
  exports.IDInputModule = IDInputModule;
2172
+ exports.IDLink = IDLink;
2173
+ exports.IDLinkComponent = IDLinkComponent;
2174
+ exports.IDLinkFunction = IDLinkFunction;
2175
+ exports.IDLinkModule = IDLinkModule;
2176
+ exports.IDLinkRoute = IDLinkRoute;
2177
+ exports.IDLinkWeb = IDLinkWeb;
2178
+ exports.IDMobileMenuComponent = IDMobileMenuComponent;
2179
+ exports.IDMobileMenuItem = IDMobileMenuItem;
2180
+ exports.IDMobileMenuModule = IDMobileMenuModule;
2181
+ exports.IDNotificationBadge = IDNotificationBadge;
2182
+ exports.IDNotificationBadgeComponent = IDNotificationBadgeComponent;
2183
+ exports.IDNotificationBadgeModule = IDNotificationBadgeModule;
826
2184
  exports.IDRadioComponent = IDRadioComponent;
827
2185
  exports.IDRadioGroupComponent = IDRadioGroupComponent;
828
2186
  exports.IDRadioModule = IDRadioModule;
@@ -836,6 +2194,10 @@
836
2194
  exports.IDSelectMultipleModule = IDSelectMultipleModule;
837
2195
  exports.IDSpinnerComponent = IDSpinnerComponent;
838
2196
  exports.IDSpinnerModule = IDSpinnerModule;
2197
+ exports.IDTabComponent = IDTabComponent;
2198
+ exports.IDTabPanelComponent = IDTabPanelComponent;
2199
+ exports.IDTabsComponent = IDTabsComponent;
2200
+ exports.IDTabsModule = IDTabsModule;
839
2201
  exports.IDTextareaComponent = IDTextareaComponent;
840
2202
  exports.IDTextareaModule = IDTextareaModule;
841
2203
  exports.IDTimeComponent = IDTimeComponent;