@inera/ids-angular 1.1.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/bundles/inera-ids-angular.umd.js +1471 -26
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/classes/header/IDHeaderAvatar.js +18 -0
  4. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +2 -0
  5. package/esm2015/lib/classes/header/IDHeaderItem.js +15 -0
  6. package/esm2015/lib/classes/header/IDHeaderItemProps.js +2 -0
  7. package/esm2015/lib/classes/header/IDHeaderNavItem.js +30 -0
  8. package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +2 -0
  9. package/esm2015/lib/classes/icon/IDIcon.js +33 -0
  10. package/esm2015/lib/classes/icon/IDIconProps.js +2 -0
  11. package/esm2015/lib/classes/link/IDLink.js +26 -0
  12. package/esm2015/lib/classes/link/IDLinkFunction.js +17 -0
  13. package/esm2015/lib/classes/link/IDLinkRoute.js +30 -0
  14. package/esm2015/lib/classes/link/IDLinkWeb.js +24 -0
  15. package/esm2015/lib/classes/mobile/MobileMenuItem.js +35 -0
  16. package/esm2015/lib/classes/mobile/MobileMenuItemProps.js +2 -0
  17. package/esm2015/lib/classes/notification-badge.js +17 -0
  18. package/esm2015/lib/components/alert/alert.component.js +39 -0
  19. package/esm2015/lib/{alert → components/alert}/alert.module.js +1 -1
  20. package/esm2015/lib/{alert-global → components/alert-global}/alert-global.component.js +1 -1
  21. package/esm2015/lib/{alert-global → components/alert-global}/alert-global.module.js +1 -1
  22. package/esm2015/lib/components/button/button.component.js +41 -0
  23. package/esm2015/lib/{button → components/button}/button.module.js +1 -1
  24. package/esm2015/lib/{button-group → components/button-group}/button-group.component.js +1 -1
  25. package/esm2015/lib/{button-group → components/button-group}/button-group.module.js +1 -1
  26. package/esm2015/lib/components/date-label/date-label.component.js +32 -0
  27. package/esm2015/lib/components/date-label/date-label.module.js +22 -0
  28. package/esm2015/lib/components/footer/footer.component.js +33 -0
  29. package/esm2015/lib/components/footer/footer.module.js +25 -0
  30. package/esm2015/lib/{form → components/form}/checkbox/checkbox.component.js +1 -1
  31. package/esm2015/lib/{form → components/form}/checkbox/checkbox.module.js +1 -1
  32. package/esm2015/lib/{form → components/form}/checkbox-group/checkbox-group.component.js +1 -1
  33. package/esm2015/lib/components/form/checkbox-group/checkbox-group.module.js +25 -0
  34. package/esm2015/lib/components/form/error-message/error-message.component.js +21 -0
  35. package/esm2015/lib/{form → components/form}/error-message/error-message.module.js +1 -1
  36. package/esm2015/lib/{form → components/form}/input/input.component.js +1 -1
  37. package/esm2015/lib/{form → components/form}/input/input.module.js +1 -1
  38. package/esm2015/lib/components/form/radio/radio-group.component.js +30 -0
  39. package/esm2015/lib/{form → components/form}/radio/radio.component.js +1 -1
  40. package/esm2015/lib/components/form/radio/radio.module.js +33 -0
  41. package/esm2015/lib/{form → components/form}/range/range.component.js +1 -1
  42. package/esm2015/lib/{form → components/form}/range/range.module.js +1 -1
  43. package/esm2015/lib/{form → components/form}/select/select.component.js +1 -1
  44. package/esm2015/lib/{form → components/form}/select/select.module.js +1 -1
  45. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +27 -0
  46. package/esm2015/lib/{form → components/form}/select-multiple/select-multiple.module.js +1 -1
  47. package/esm2015/lib/components/form/spinner/spinner.component.js +23 -0
  48. package/esm2015/lib/{form → components/form}/spinner/spinner.module.js +1 -1
  49. package/esm2015/lib/{form → components/form}/textarea/textarea.component.js +1 -1
  50. package/esm2015/lib/{form → components/form}/textarea/textarea.module.js +1 -1
  51. package/esm2015/lib/{form → components/form}/time/time.component.js +1 -1
  52. package/esm2015/lib/{form → components/form}/time/time.module.js +1 -1
  53. package/esm2015/lib/components/grid/column/column.component.js +27 -0
  54. package/esm2015/lib/{grid → components/grid}/column/column.module.js +1 -1
  55. package/esm2015/lib/components/grid/container/container.component.js +20 -0
  56. package/esm2015/lib/{grid → components/grid}/container/container.module.js +1 -1
  57. package/esm2015/lib/{grid → components/grid}/row/row.component.js +1 -1
  58. package/esm2015/lib/{grid → components/grid}/row/row.module.js +1 -1
  59. package/esm2015/lib/components/header/header.component.js +50 -0
  60. package/esm2015/lib/components/header/header.module.js +25 -0
  61. package/esm2015/lib/components/icon/icon.component.js +41 -0
  62. package/esm2015/lib/{icon → components/icon}/icon.module.js +1 -1
  63. package/esm2015/lib/components/link/link.component.js +60 -0
  64. package/esm2015/lib/components/link/link.module.js +26 -0
  65. package/esm2015/lib/components/list/item/info/list-item-info.component.js +16 -0
  66. package/esm2015/lib/components/list/item/info/list-item-info.module.js +21 -0
  67. package/esm2015/lib/components/list/item/list-item.component.js +38 -0
  68. package/esm2015/lib/components/list/item/list-item.module.js +21 -0
  69. package/esm2015/lib/components/list/list.component.js +16 -0
  70. package/esm2015/lib/components/list/list.module.js +22 -0
  71. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +27 -0
  72. package/esm2015/lib/components/mobile/menu/mobile-menu.module.js +25 -0
  73. package/esm2015/lib/components/notification/badge/notification-badge.component.js +20 -0
  74. package/esm2015/lib/components/notification/badge/notification-badge.module.js +22 -0
  75. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +18 -0
  76. package/esm2015/lib/components/tabs/tab/tab.component.js +27 -0
  77. package/esm2015/lib/components/tabs/tabs.component.js +15 -0
  78. package/esm2015/lib/components/tabs/tabs.module.js +35 -0
  79. package/esm2015/lib/internals/anchor.component.js +75 -0
  80. package/esm2015/lib/internals/anchor.module.js +26 -0
  81. package/esm2015/public-api.js +90 -40
  82. package/fesm2015/inera-ids-angular.js +863 -9
  83. package/fesm2015/inera-ids-angular.js.map +1 -1
  84. package/lib/classes/header/IDHeaderAvatar.d.ts +10 -0
  85. package/lib/classes/header/IDHeaderAvatarProps.d.ts +7 -0
  86. package/lib/classes/header/IDHeaderItem.d.ts +8 -0
  87. package/lib/classes/header/IDHeaderItemProps.d.ts +6 -0
  88. package/lib/classes/header/IDHeaderNavItem.d.ts +13 -0
  89. package/lib/classes/header/IDHeaderNavItemProps.d.ts +11 -0
  90. package/lib/classes/icon/IDIcon.d.ts +14 -0
  91. package/lib/classes/icon/IDIconProps.d.ts +11 -0
  92. package/lib/classes/link/IDLink.d.ts +13 -0
  93. package/lib/classes/link/IDLinkFunction.d.ts +8 -0
  94. package/lib/classes/link/IDLinkRoute.d.ts +13 -0
  95. package/lib/classes/link/IDLinkWeb.d.ts +11 -0
  96. package/lib/classes/mobile/MobileMenuItem.d.ts +14 -0
  97. package/lib/classes/mobile/MobileMenuItemProps.d.ts +11 -0
  98. package/lib/classes/notification-badge.d.ts +9 -0
  99. package/lib/{alert → components/alert}/alert.component.d.ts +0 -0
  100. package/lib/{alert → components/alert}/alert.module.d.ts +0 -0
  101. package/lib/{alert-global → components/alert-global}/alert-global.component.d.ts +0 -0
  102. package/lib/{alert-global → components/alert-global}/alert-global.module.d.ts +0 -0
  103. package/lib/{button → components/button}/button.component.d.ts +0 -0
  104. package/lib/{button → components/button}/button.module.d.ts +0 -0
  105. package/lib/{button-group → components/button-group}/button-group.component.d.ts +0 -0
  106. package/lib/{button-group → components/button-group}/button-group.module.d.ts +0 -0
  107. package/lib/components/date-label/date-label.component.d.ts +11 -0
  108. package/lib/components/date-label/date-label.module.d.ts +8 -0
  109. package/lib/components/footer/footer.component.d.ts +12 -0
  110. package/lib/components/footer/footer.module.d.ts +10 -0
  111. package/lib/{form → components/form}/checkbox/checkbox.component.d.ts +0 -0
  112. package/lib/{form → components/form}/checkbox/checkbox.module.d.ts +0 -0
  113. package/lib/{form → components/form}/checkbox-group/checkbox-group.component.d.ts +0 -0
  114. package/lib/{form → components/form}/checkbox-group/checkbox-group.module.d.ts +0 -0
  115. package/lib/{form → components/form}/error-message/error-message.component.d.ts +0 -0
  116. package/lib/{form → components/form}/error-message/error-message.module.d.ts +0 -0
  117. package/lib/{form → components/form}/input/input.component.d.ts +0 -0
  118. package/lib/{form → components/form}/input/input.module.d.ts +0 -0
  119. package/lib/{form → components/form}/radio/radio-group.component.d.ts +0 -0
  120. package/lib/{form → components/form}/radio/radio.component.d.ts +0 -0
  121. package/lib/{form → components/form}/radio/radio.module.d.ts +0 -0
  122. package/lib/{form → components/form}/range/range.component.d.ts +0 -0
  123. package/lib/{form → components/form}/range/range.module.d.ts +0 -0
  124. package/lib/{form → components/form}/select/select.component.d.ts +0 -0
  125. package/lib/{form → components/form}/select/select.module.d.ts +0 -0
  126. package/lib/{form → components/form}/select-multiple/select-multiple.component.d.ts +0 -0
  127. package/lib/{form → components/form}/select-multiple/select-multiple.module.d.ts +0 -0
  128. package/lib/{form → components/form}/spinner/spinner.component.d.ts +0 -0
  129. package/lib/{form → components/form}/spinner/spinner.module.d.ts +0 -0
  130. package/lib/{form → components/form}/textarea/textarea.component.d.ts +0 -0
  131. package/lib/{form → components/form}/textarea/textarea.module.d.ts +0 -0
  132. package/lib/{form → components/form}/time/time.component.d.ts +0 -0
  133. package/lib/{form → components/form}/time/time.module.d.ts +0 -0
  134. package/lib/{grid → components/grid}/column/column.component.d.ts +0 -0
  135. package/lib/{grid → components/grid}/column/column.module.d.ts +0 -0
  136. package/lib/{grid → components/grid}/container/container.component.d.ts +0 -0
  137. package/lib/{grid → components/grid}/container/container.module.d.ts +0 -0
  138. package/lib/{grid → components/grid}/row/row.component.d.ts +0 -0
  139. package/lib/{grid → components/grid}/row/row.module.d.ts +0 -0
  140. package/lib/components/header/header.component.d.ts +20 -0
  141. package/lib/components/header/header.module.d.ts +10 -0
  142. package/lib/{icon → components/icon}/icon.component.d.ts +0 -0
  143. package/lib/{icon → components/icon}/icon.module.d.ts +0 -0
  144. package/lib/components/link/link.component.d.ts +21 -0
  145. package/lib/components/link/link.module.d.ts +11 -0
  146. package/lib/components/list/item/info/list-item-info.component.d.ts +6 -0
  147. package/lib/components/list/item/info/list-item-info.module.d.ts +7 -0
  148. package/lib/components/list/item/list-item.component.d.ts +13 -0
  149. package/lib/components/list/item/list-item.module.d.ts +7 -0
  150. package/lib/components/list/list.component.d.ts +6 -0
  151. package/lib/components/list/list.module.d.ts +8 -0
  152. package/lib/components/mobile/menu/mobile-menu.component.d.ts +10 -0
  153. package/lib/components/mobile/menu/mobile-menu.module.d.ts +10 -0
  154. package/lib/components/notification/badge/notification-badge.component.d.ts +7 -0
  155. package/lib/components/notification/badge/notification-badge.module.d.ts +8 -0
  156. package/lib/components/tabs/panel/tab-panel.component.d.ts +8 -0
  157. package/lib/components/tabs/tab/tab.component.d.ts +11 -0
  158. package/lib/components/tabs/tabs.component.d.ts +6 -0
  159. package/lib/components/tabs/tabs.module.d.ts +12 -0
  160. package/lib/internals/anchor.component.d.ts +30 -0
  161. package/lib/internals/anchor.module.d.ts +9 -0
  162. package/package.json +2 -2
  163. package/public-api.d.ts +76 -39
  164. package/esm2015/lib/alert/alert.component.js +0 -39
  165. package/esm2015/lib/button/button.component.js +0 -41
  166. package/esm2015/lib/form/checkbox-group/checkbox-group.module.js +0 -25
  167. package/esm2015/lib/form/error-message/error-message.component.js +0 -21
  168. package/esm2015/lib/form/radio/radio-group.component.js +0 -30
  169. package/esm2015/lib/form/radio/radio.module.js +0 -33
  170. package/esm2015/lib/form/select-multiple/select-multiple.component.js +0 -27
  171. package/esm2015/lib/form/spinner/spinner.component.js +0 -23
  172. package/esm2015/lib/grid/column/column.component.js +0 -27
  173. package/esm2015/lib/grid/container/container.component.js +0 -20
  174. package/esm2015/lib/icon/icon.component.js +0 -41
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
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')) :
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'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.inera = global.inera || {}, global.inera["ids-angular"] = {}), global.ng.core, global.ng.common));
5
- })(this, (function (exports, i0, 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/date-label/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('@angular/platform-browser'), require('@angular/router'), require('@inera/ids-core/components/link/register'), require('@inera/ids-core/components/list/register'), 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/date-label/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', '@angular/platform-browser', '@angular/router', '@inera/ids-core/components/link/register', '@inera/ids-core/components/list/register', '@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() {
@@ -38,7 +40,7 @@
38
40
  return IDAlertComponent;
39
41
  }());
40
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 });
41
- 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: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
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"] }] });
42
44
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertComponent, decorators: [{
43
45
  type: i0.Component,
44
46
  args: [{
@@ -68,8 +70,8 @@
68
70
  return IDAlertModule;
69
71
  }());
70
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 });
71
- IDAlertModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, declarations: [IDAlertComponent], imports: [i1.CommonModule], exports: [IDAlertComponent] });
72
- IDAlertModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, imports: [[i1.CommonModule]] });
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]] });
73
75
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertModule, decorators: [{
74
76
  type: i0.NgModule,
75
77
  args: [{
@@ -79,7 +81,7 @@
79
81
  exports: [
80
82
  IDAlertComponent
81
83
  ],
82
- imports: [i1.CommonModule],
84
+ imports: [i2.CommonModule],
83
85
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
84
86
  }]
85
87
  }] });
@@ -95,7 +97,7 @@
95
97
  return IDAlertGlobalComponent;
96
98
  }());
97
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 });
98
- 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: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
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"] }] });
99
101
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalComponent, decorators: [{
100
102
  type: i0.Component,
101
103
  args: [{
@@ -121,8 +123,8 @@
121
123
  return IDAlertGlobalModule;
122
124
  }());
123
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 });
124
- IDAlertGlobalModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalModule, declarations: [IDAlertGlobalComponent], imports: [i1.CommonModule], exports: [IDAlertGlobalComponent] });
125
- IDAlertGlobalModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalModule, imports: [[i1.CommonModule]] });
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]] });
126
128
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAlertGlobalModule, decorators: [{
127
129
  type: i0.NgModule,
128
130
  args: [{
@@ -132,7 +134,7 @@
132
134
  exports: [
133
135
  IDAlertGlobalComponent
134
136
  ],
135
- imports: [i1.CommonModule],
137
+ imports: [i2.CommonModule],
136
138
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
137
139
  }]
138
140
  }] });
@@ -238,6 +240,128 @@
238
240
  }]
239
241
  }] });
240
242
 
243
+ var IDDateLabelComponent = /** @class */ (function () {
244
+ function IDDateLabelComponent() {
245
+ this.date = null;
246
+ this.year = null;
247
+ this.month = null;
248
+ this.monthLabel = null;
249
+ this.day = null;
250
+ }
251
+ return IDDateLabelComponent;
252
+ }());
253
+ IDDateLabelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
254
+ IDDateLabelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDateLabelComponent, selector: "id-date-label", inputs: { date: "date", year: "year", month: "month", monthLabel: "monthLabel", day: "day" }, ngImport: i0__namespace, template: "<ids-date-label \n [date]=\"date?.toString()\"\n [year]=\"year\"\n [month]=\"month\"\n [monthlabel]=\"monthLabel\"\n [day]=\"day\">\n <ng-content></ng-content>\n</ids-date-label>", encapsulation: i0__namespace.ViewEncapsulation.None });
255
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelComponent, decorators: [{
256
+ type: i0.Component,
257
+ args: [{
258
+ selector: 'id-date-label',
259
+ templateUrl: './date-label.component.html',
260
+ encapsulation: i0.ViewEncapsulation.None,
261
+ }]
262
+ }], ctorParameters: function () { return []; }, propDecorators: { date: [{
263
+ type: i0.Input
264
+ }], year: [{
265
+ type: i0.Input
266
+ }], month: [{
267
+ type: i0.Input
268
+ }], monthLabel: [{
269
+ type: i0.Input
270
+ }], day: [{
271
+ type: i0.Input
272
+ }] } });
273
+
274
+ var IDDateLabelModule = /** @class */ (function () {
275
+ function IDDateLabelModule() {
276
+ }
277
+ return IDDateLabelModule;
278
+ }());
279
+ IDDateLabelModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
280
+ IDDateLabelModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelModule, declarations: [IDDateLabelComponent], exports: [IDDateLabelComponent] });
281
+ IDDateLabelModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelModule });
282
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDateLabelModule, decorators: [{
283
+ type: i0.NgModule,
284
+ args: [{
285
+ declarations: [
286
+ IDDateLabelComponent
287
+ ],
288
+ exports: [
289
+ IDDateLabelComponent
290
+ ],
291
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
292
+ }]
293
+ }] });
294
+
295
+ var IDIcon = /** @class */ (function () {
296
+ function IDIcon(_props) {
297
+ this._props = _props;
298
+ }
299
+ Object.defineProperty(IDIcon.prototype, "name", {
300
+ get: function () {
301
+ return this._props.name;
302
+ },
303
+ enumerable: false,
304
+ configurable: true
305
+ });
306
+ Object.defineProperty(IDIcon.prototype, "title", {
307
+ get: function () {
308
+ return this._props.title;
309
+ },
310
+ enumerable: false,
311
+ configurable: true
312
+ });
313
+ Object.defineProperty(IDIcon.prototype, "color", {
314
+ get: function () {
315
+ return this._props.color;
316
+ },
317
+ enumerable: false,
318
+ configurable: true
319
+ });
320
+ Object.defineProperty(IDIcon.prototype, "color2", {
321
+ get: function () {
322
+ return this._props.color2;
323
+ },
324
+ enumerable: false,
325
+ configurable: true
326
+ });
327
+ Object.defineProperty(IDIcon.prototype, "size", {
328
+ get: function () {
329
+ return this._props.size;
330
+ },
331
+ enumerable: false,
332
+ configurable: true
333
+ });
334
+ Object.defineProperty(IDIcon.prototype, "width", {
335
+ get: function () {
336
+ return this._props.width;
337
+ },
338
+ enumerable: false,
339
+ configurable: true
340
+ });
341
+ Object.defineProperty(IDIcon.prototype, "height", {
342
+ get: function () {
343
+ return this._props.height;
344
+ },
345
+ enumerable: false,
346
+ configurable: true
347
+ });
348
+ Object.defineProperty(IDIcon.prototype, "colorpreset", {
349
+ get: function () {
350
+ return this._props.colorpreset;
351
+ },
352
+ enumerable: false,
353
+ configurable: true
354
+ });
355
+ Object.defineProperty(IDIcon.prototype, "padding", {
356
+ get: function () {
357
+ return this._props.padding;
358
+ },
359
+ enumerable: false,
360
+ configurable: true
361
+ });
362
+ return IDIcon;
363
+ }());
364
+
241
365
  var IDIconComponent = /** @class */ (function () {
242
366
  function IDIconComponent() {
243
367
  this.name = undefined;
@@ -382,7 +506,7 @@
382
506
  return IDCheckboxGroupComponent;
383
507
  }());
384
508
  IDCheckboxGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
385
- 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 });
509
+ 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 });
386
510
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupComponent, decorators: [{
387
511
  type: i0.Component,
388
512
  args: [{
@@ -400,12 +524,12 @@
400
524
  return IDCheckboxGroupModule;
401
525
  }());
402
526
  IDCheckboxGroupModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
403
- 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] });
404
- IDCheckboxGroupModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, imports: [[i1.CommonModule]] });
527
+ 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] });
528
+ IDCheckboxGroupModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, imports: [[i2.CommonModule]] });
405
529
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxGroupModule, decorators: [{
406
530
  type: i0.NgModule,
407
531
  args: [{
408
- imports: [i1.CommonModule],
532
+ imports: [i2.CommonModule],
409
533
  declarations: [
410
534
  IDCheckboxGroupComponent
411
535
  ],
@@ -483,7 +607,7 @@
483
607
  return IDRadioGroupComponent;
484
608
  }());
485
609
  IDRadioGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
486
- 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 });
610
+ 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 });
487
611
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioGroupComponent, decorators: [{
488
612
  type: i0.Component,
489
613
  args: [{
@@ -508,16 +632,16 @@
508
632
  }());
509
633
  IDRadioModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
510
634
  IDRadioModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, declarations: [IDRadioComponent,
511
- IDRadioGroupComponent], imports: [i1.CommonModule], exports: [IDRadioComponent,
635
+ IDRadioGroupComponent], imports: [i2.CommonModule], exports: [IDRadioComponent,
512
636
  IDRadioGroupComponent] });
513
637
  IDRadioModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, imports: [[
514
- i1.CommonModule
638
+ i2.CommonModule
515
639
  ]] });
516
640
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRadioModule, decorators: [{
517
641
  type: i0.NgModule,
518
642
  args: [{
519
643
  imports: [
520
- i1.CommonModule
644
+ i2.CommonModule
521
645
  ],
522
646
  declarations: [
523
647
  IDRadioComponent,
@@ -617,7 +741,7 @@
617
741
  return IDSelectMultipleComponent;
618
742
  }());
619
743
  IDSelectMultipleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
620
- 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 });
744
+ 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 });
621
745
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleComponent, decorators: [{
622
746
  type: i0.Component,
623
747
  args: [{
@@ -639,15 +763,15 @@
639
763
  return IDSelectMultipleModule;
640
764
  }());
641
765
  IDSelectMultipleModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
642
- 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] });
766
+ 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] });
643
767
  IDSelectMultipleModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, imports: [[
644
- i1.CommonModule
768
+ i2.CommonModule
645
769
  ]] });
646
770
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDSelectMultipleModule, decorators: [{
647
771
  type: i0.NgModule,
648
772
  args: [{
649
773
  imports: [
650
- i1.CommonModule
774
+ i2.CommonModule
651
775
  ],
652
776
  declarations: [
653
777
  IDSelectMultipleComponent
@@ -821,7 +945,7 @@
821
945
  return IDColumnComponent;
822
946
  }());
823
947
  IDColumnComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDColumnComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
824
- 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 });
948
+ 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 });
825
949
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDColumnComponent, decorators: [{
826
950
  type: i0.Component,
827
951
  args: [{
@@ -866,7 +990,7 @@
866
990
  return IDContainerComponent;
867
991
  }());
868
992
  IDContainerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
869
- 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 [fluid]=\"fluid\">\r\n <ng-content></ng-content>\r\n</ids-container>", encapsulation: i0__namespace.ViewEncapsulation.None });
993
+ 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 });
870
994
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerComponent, decorators: [{
871
995
  type: i0.Component,
872
996
  args: [{
@@ -899,6 +1023,1295 @@
899
1023
  }]
900
1024
  }] });
901
1025
 
1026
+ /*! *****************************************************************************
1027
+ Copyright (c) Microsoft Corporation.
1028
+
1029
+ Permission to use, copy, modify, and/or distribute this software for any
1030
+ purpose with or without fee is hereby granted.
1031
+
1032
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1033
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1034
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1035
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1036
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1037
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1038
+ PERFORMANCE OF THIS SOFTWARE.
1039
+ ***************************************************************************** */
1040
+ /* global Reflect, Promise */
1041
+ var extendStatics = function (d, b) {
1042
+ extendStatics = Object.setPrototypeOf ||
1043
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1044
+ function (d, b) { for (var p in b)
1045
+ if (Object.prototype.hasOwnProperty.call(b, p))
1046
+ d[p] = b[p]; };
1047
+ return extendStatics(d, b);
1048
+ };
1049
+ function __extends(d, b) {
1050
+ if (typeof b !== "function" && b !== null)
1051
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
1052
+ extendStatics(d, b);
1053
+ function __() { this.constructor = d; }
1054
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
1055
+ }
1056
+ var __assign = function () {
1057
+ __assign = Object.assign || function __assign(t) {
1058
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
1059
+ s = arguments[i];
1060
+ for (var p in s)
1061
+ if (Object.prototype.hasOwnProperty.call(s, p))
1062
+ t[p] = s[p];
1063
+ }
1064
+ return t;
1065
+ };
1066
+ return __assign.apply(this, arguments);
1067
+ };
1068
+ function __rest(s, e) {
1069
+ var t = {};
1070
+ for (var p in s)
1071
+ if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
1072
+ t[p] = s[p];
1073
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
1074
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
1075
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
1076
+ t[p[i]] = s[p[i]];
1077
+ }
1078
+ return t;
1079
+ }
1080
+ function __decorate(decorators, target, key, desc) {
1081
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1082
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1083
+ r = Reflect.decorate(decorators, target, key, desc);
1084
+ else
1085
+ for (var i = decorators.length - 1; i >= 0; i--)
1086
+ if (d = decorators[i])
1087
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1088
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
1089
+ }
1090
+ function __param(paramIndex, decorator) {
1091
+ return function (target, key) { decorator(target, key, paramIndex); };
1092
+ }
1093
+ function __metadata(metadataKey, metadataValue) {
1094
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1095
+ return Reflect.metadata(metadataKey, metadataValue);
1096
+ }
1097
+ function __awaiter(thisArg, _arguments, P, generator) {
1098
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
1099
+ return new (P || (P = Promise))(function (resolve, reject) {
1100
+ function fulfilled(value) { try {
1101
+ step(generator.next(value));
1102
+ }
1103
+ catch (e) {
1104
+ reject(e);
1105
+ } }
1106
+ function rejected(value) { try {
1107
+ step(generator["throw"](value));
1108
+ }
1109
+ catch (e) {
1110
+ reject(e);
1111
+ } }
1112
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
1113
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
1114
+ });
1115
+ }
1116
+ function __generator(thisArg, body) {
1117
+ var _ = { label: 0, sent: function () { if (t[0] & 1)
1118
+ throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
1119
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
1120
+ function verb(n) { return function (v) { return step([n, v]); }; }
1121
+ function step(op) {
1122
+ if (f)
1123
+ throw new TypeError("Generator is already executing.");
1124
+ while (_)
1125
+ try {
1126
+ 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)
1127
+ return t;
1128
+ if (y = 0, t)
1129
+ op = [op[0] & 2, t.value];
1130
+ switch (op[0]) {
1131
+ case 0:
1132
+ case 1:
1133
+ t = op;
1134
+ break;
1135
+ case 4:
1136
+ _.label++;
1137
+ return { value: op[1], done: false };
1138
+ case 5:
1139
+ _.label++;
1140
+ y = op[1];
1141
+ op = [0];
1142
+ continue;
1143
+ case 7:
1144
+ op = _.ops.pop();
1145
+ _.trys.pop();
1146
+ continue;
1147
+ default:
1148
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
1149
+ _ = 0;
1150
+ continue;
1151
+ }
1152
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
1153
+ _.label = op[1];
1154
+ break;
1155
+ }
1156
+ if (op[0] === 6 && _.label < t[1]) {
1157
+ _.label = t[1];
1158
+ t = op;
1159
+ break;
1160
+ }
1161
+ if (t && _.label < t[2]) {
1162
+ _.label = t[2];
1163
+ _.ops.push(op);
1164
+ break;
1165
+ }
1166
+ if (t[2])
1167
+ _.ops.pop();
1168
+ _.trys.pop();
1169
+ continue;
1170
+ }
1171
+ op = body.call(thisArg, _);
1172
+ }
1173
+ catch (e) {
1174
+ op = [6, e];
1175
+ y = 0;
1176
+ }
1177
+ finally {
1178
+ f = t = 0;
1179
+ }
1180
+ if (op[0] & 5)
1181
+ throw op[1];
1182
+ return { value: op[0] ? op[1] : void 0, done: true };
1183
+ }
1184
+ }
1185
+ var __createBinding = Object.create ? (function (o, m, k, k2) {
1186
+ if (k2 === undefined)
1187
+ k2 = k;
1188
+ Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
1189
+ }) : (function (o, m, k, k2) {
1190
+ if (k2 === undefined)
1191
+ k2 = k;
1192
+ o[k2] = m[k];
1193
+ });
1194
+ function __exportStar(m, o) {
1195
+ for (var p in m)
1196
+ if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
1197
+ __createBinding(o, m, p);
1198
+ }
1199
+ function __values(o) {
1200
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
1201
+ if (m)
1202
+ return m.call(o);
1203
+ if (o && typeof o.length === "number")
1204
+ return {
1205
+ next: function () {
1206
+ if (o && i >= o.length)
1207
+ o = void 0;
1208
+ return { value: o && o[i++], done: !o };
1209
+ }
1210
+ };
1211
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
1212
+ }
1213
+ function __read(o, n) {
1214
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
1215
+ if (!m)
1216
+ return o;
1217
+ var i = m.call(o), r, ar = [], e;
1218
+ try {
1219
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
1220
+ ar.push(r.value);
1221
+ }
1222
+ catch (error) {
1223
+ e = { error: error };
1224
+ }
1225
+ finally {
1226
+ try {
1227
+ if (r && !r.done && (m = i["return"]))
1228
+ m.call(i);
1229
+ }
1230
+ finally {
1231
+ if (e)
1232
+ throw e.error;
1233
+ }
1234
+ }
1235
+ return ar;
1236
+ }
1237
+ /** @deprecated */
1238
+ function __spread() {
1239
+ for (var ar = [], i = 0; i < arguments.length; i++)
1240
+ ar = ar.concat(__read(arguments[i]));
1241
+ return ar;
1242
+ }
1243
+ /** @deprecated */
1244
+ function __spreadArrays() {
1245
+ for (var s = 0, i = 0, il = arguments.length; i < il; i++)
1246
+ s += arguments[i].length;
1247
+ for (var r = Array(s), k = 0, i = 0; i < il; i++)
1248
+ for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
1249
+ r[k] = a[j];
1250
+ return r;
1251
+ }
1252
+ function __spreadArray(to, from, pack) {
1253
+ if (pack || arguments.length === 2)
1254
+ for (var i = 0, l = from.length, ar; i < l; i++) {
1255
+ if (ar || !(i in from)) {
1256
+ if (!ar)
1257
+ ar = Array.prototype.slice.call(from, 0, i);
1258
+ ar[i] = from[i];
1259
+ }
1260
+ }
1261
+ return to.concat(ar || Array.prototype.slice.call(from));
1262
+ }
1263
+ function __await(v) {
1264
+ return this instanceof __await ? (this.v = v, this) : new __await(v);
1265
+ }
1266
+ function __asyncGenerator(thisArg, _arguments, generator) {
1267
+ if (!Symbol.asyncIterator)
1268
+ throw new TypeError("Symbol.asyncIterator is not defined.");
1269
+ var g = generator.apply(thisArg, _arguments || []), i, q = [];
1270
+ return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
1271
+ function verb(n) { if (g[n])
1272
+ i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
1273
+ function resume(n, v) { try {
1274
+ step(g[n](v));
1275
+ }
1276
+ catch (e) {
1277
+ settle(q[0][3], e);
1278
+ } }
1279
+ function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
1280
+ function fulfill(value) { resume("next", value); }
1281
+ function reject(value) { resume("throw", value); }
1282
+ function settle(f, v) { if (f(v), q.shift(), q.length)
1283
+ resume(q[0][0], q[0][1]); }
1284
+ }
1285
+ function __asyncDelegator(o) {
1286
+ var i, p;
1287
+ return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
1288
+ 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; }
1289
+ }
1290
+ function __asyncValues(o) {
1291
+ if (!Symbol.asyncIterator)
1292
+ throw new TypeError("Symbol.asyncIterator is not defined.");
1293
+ var m = o[Symbol.asyncIterator], i;
1294
+ 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);
1295
+ 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); }); }; }
1296
+ function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
1297
+ }
1298
+ function __makeTemplateObject(cooked, raw) {
1299
+ if (Object.defineProperty) {
1300
+ Object.defineProperty(cooked, "raw", { value: raw });
1301
+ }
1302
+ else {
1303
+ cooked.raw = raw;
1304
+ }
1305
+ return cooked;
1306
+ }
1307
+ ;
1308
+ var __setModuleDefault = Object.create ? (function (o, v) {
1309
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
1310
+ }) : function (o, v) {
1311
+ o["default"] = v;
1312
+ };
1313
+ function __importStar(mod) {
1314
+ if (mod && mod.__esModule)
1315
+ return mod;
1316
+ var result = {};
1317
+ if (mod != null)
1318
+ for (var k in mod)
1319
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
1320
+ __createBinding(result, mod, k);
1321
+ __setModuleDefault(result, mod);
1322
+ return result;
1323
+ }
1324
+ function __importDefault(mod) {
1325
+ return (mod && mod.__esModule) ? mod : { default: mod };
1326
+ }
1327
+ function __classPrivateFieldGet(receiver, state, kind, f) {
1328
+ if (kind === "a" && !f)
1329
+ throw new TypeError("Private accessor was defined without a getter");
1330
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
1331
+ throw new TypeError("Cannot read private member from an object whose class did not declare it");
1332
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
1333
+ }
1334
+ function __classPrivateFieldSet(receiver, state, value, kind, f) {
1335
+ if (kind === "m")
1336
+ throw new TypeError("Private method is not writable");
1337
+ if (kind === "a" && !f)
1338
+ throw new TypeError("Private accessor was defined without a setter");
1339
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
1340
+ throw new TypeError("Cannot write private member to an object whose class did not declare it");
1341
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
1342
+ }
1343
+
1344
+ var IDLink = /** @class */ (function () {
1345
+ function IDLink(_label, _id, _classes) {
1346
+ this._label = _label;
1347
+ this._id = _id;
1348
+ this._classes = _classes;
1349
+ }
1350
+ Object.defineProperty(IDLink.prototype, "label", {
1351
+ get: function () {
1352
+ return this._label;
1353
+ },
1354
+ set: function (label) {
1355
+ this._label = label;
1356
+ },
1357
+ enumerable: false,
1358
+ configurable: true
1359
+ });
1360
+ Object.defineProperty(IDLink.prototype, "id", {
1361
+ get: function () {
1362
+ return this._id;
1363
+ },
1364
+ set: function (id) {
1365
+ this._id = id;
1366
+ },
1367
+ enumerable: false,
1368
+ configurable: true
1369
+ });
1370
+ Object.defineProperty(IDLink.prototype, "classes", {
1371
+ get: function () {
1372
+ return this._classes;
1373
+ },
1374
+ set: function (classes) {
1375
+ this._classes = classes;
1376
+ },
1377
+ enumerable: false,
1378
+ configurable: true
1379
+ });
1380
+ return IDLink;
1381
+ }());
1382
+
1383
+ var IDLinkFunction = /** @class */ (function (_super) {
1384
+ __extends(IDLinkFunction, _super);
1385
+ function IDLinkFunction(_label, _action, _id, _classes) {
1386
+ var _this = _super.call(this, _label, _id, _classes) || this;
1387
+ _this._action = _action;
1388
+ return _this;
1389
+ }
1390
+ Object.defineProperty(IDLinkFunction.prototype, "action", {
1391
+ get: function () {
1392
+ return this._action;
1393
+ },
1394
+ set: function (action) {
1395
+ this._action = action;
1396
+ },
1397
+ enumerable: false,
1398
+ configurable: true
1399
+ });
1400
+ IDLinkFunction.prototype.click = function () {
1401
+ this._action();
1402
+ };
1403
+ return IDLinkFunction;
1404
+ }(IDLink));
1405
+
1406
+ var IDLinkRoute = /** @class */ (function (_super) {
1407
+ __extends(IDLinkRoute, _super);
1408
+ function IDLinkRoute(_label, _route, _queries, router, _id, _classes) {
1409
+ if (_queries === void 0) { _queries = {}; }
1410
+ var _this = _super.call(this, _label, _id, _classes) || this;
1411
+ _this._route = _route;
1412
+ _this._queries = _queries;
1413
+ _this.router = router;
1414
+ return _this;
1415
+ }
1416
+ Object.defineProperty(IDLinkRoute.prototype, "route", {
1417
+ get: function () {
1418
+ return this._route;
1419
+ },
1420
+ set: function (route) {
1421
+ this._route = route;
1422
+ },
1423
+ enumerable: false,
1424
+ configurable: true
1425
+ });
1426
+ Object.defineProperty(IDLinkRoute.prototype, "queries", {
1427
+ get: function () {
1428
+ return this._queries;
1429
+ },
1430
+ set: function (_queries) {
1431
+ this._queries = _queries;
1432
+ },
1433
+ enumerable: false,
1434
+ configurable: true
1435
+ });
1436
+ IDLinkRoute.prototype.click = function () {
1437
+ if (this.router) {
1438
+ this.router.navigate([this.route]);
1439
+ }
1440
+ else {
1441
+ console.error('No router supplied in IcLinkRoute Object');
1442
+ }
1443
+ };
1444
+ return IDLinkRoute;
1445
+ }(IDLink));
1446
+
1447
+ var IDLinkWeb = /** @class */ (function (_super) {
1448
+ __extends(IDLinkWeb, _super);
1449
+ function IDLinkWeb(_label, _url, _target, _id, _classes) {
1450
+ var _this = _super.call(this, _label, _id, _classes) || this;
1451
+ _this._url = _url;
1452
+ _this._target = _target;
1453
+ return _this;
1454
+ }
1455
+ Object.defineProperty(IDLinkWeb.prototype, "target", {
1456
+ get: function () {
1457
+ return this._target;
1458
+ },
1459
+ set: function (target) {
1460
+ this._target = target;
1461
+ },
1462
+ enumerable: false,
1463
+ configurable: true
1464
+ });
1465
+ Object.defineProperty(IDLinkWeb.prototype, "url", {
1466
+ get: function () {
1467
+ return this._url;
1468
+ },
1469
+ set: function (url) {
1470
+ this._url = url;
1471
+ },
1472
+ enumerable: false,
1473
+ configurable: true
1474
+ });
1475
+ IDLinkWeb.prototype.click = function () {
1476
+ window.open(this._url, this.target);
1477
+ };
1478
+ return IDLinkWeb;
1479
+ }(IDLink));
1480
+
1481
+ var IDAnchorComponent = /** @class */ (function () {
1482
+ function IDAnchorComponent(sanitizer) {
1483
+ this.sanitizer = sanitizer;
1484
+ this.linkType = '';
1485
+ this.isLinkExternal = false;
1486
+ this.isLinkRoute = false;
1487
+ this.isLinkWeb = false;
1488
+ this.isLinkFunction = false;
1489
+ this.classes = '';
1490
+ this.scriptHref = this.sanitizer.bypassSecurityTrustUrl('javascript:');
1491
+ /** Apply classes to <a> element */
1492
+ this.contextClasses = [];
1493
+ }
1494
+ IDAnchorComponent.prototype.setLinkType = function () {
1495
+ this.isLinkRoute = this.link instanceof IDLinkRoute;
1496
+ this.isLinkWeb = this.link instanceof IDLinkWeb;
1497
+ this.isLinkFunction = this.link instanceof IDLinkFunction;
1498
+ if (this.link && this.isLinkWeb) {
1499
+ var weblink = this.link;
1500
+ this.isLinkExternal = weblink.target === '_blank' || weblink.target === 'blank';
1501
+ }
1502
+ else {
1503
+ this.isLinkExternal = false;
1504
+ }
1505
+ };
1506
+ IDAnchorComponent.prototype.setClasses = function () {
1507
+ if (this.link && this.link.classes) {
1508
+ this.classes = __spreadArray(__spreadArray([], __read(this.contextClasses)), __read(this.link.classes)).join(' ');
1509
+ }
1510
+ else {
1511
+ this.classes = this.contextClasses.join(' ');
1512
+ }
1513
+ };
1514
+ Object.defineProperty(IDAnchorComponent.prototype, "linkWeb", {
1515
+ get: function () {
1516
+ return this.link;
1517
+ },
1518
+ enumerable: false,
1519
+ configurable: true
1520
+ });
1521
+ Object.defineProperty(IDAnchorComponent.prototype, "linkRoute", {
1522
+ get: function () {
1523
+ return this.link;
1524
+ },
1525
+ enumerable: false,
1526
+ configurable: true
1527
+ });
1528
+ Object.defineProperty(IDAnchorComponent.prototype, "linkFunction", {
1529
+ get: function () {
1530
+ return this.link;
1531
+ },
1532
+ enumerable: false,
1533
+ configurable: true
1534
+ });
1535
+ IDAnchorComponent.prototype.ngOnChanges = function (changes) {
1536
+ if (changes.link) {
1537
+ this.setLinkType();
1538
+ this.setClasses();
1539
+ }
1540
+ if (changes.contextClasses) {
1541
+ this.setClasses();
1542
+ }
1543
+ };
1544
+ return IDAnchorComponent;
1545
+ }());
1546
+ 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 });
1547
+ 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"] }] });
1548
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorComponent, decorators: [{
1549
+ type: i0.Component,
1550
+ args: [{
1551
+ selector: 'id-anchor',
1552
+ templateUrl: './anchor.component.html',
1553
+ styles: ['a { color: inherit; text-decoration: inherit; font-size: inherit }',]
1554
+ }]
1555
+ }], ctorParameters: function () { return [{ type: i1__namespace.DomSanitizer }]; }, propDecorators: { link: [{
1556
+ type: i0.Input
1557
+ }], contextClasses: [{
1558
+ type: i0.Input
1559
+ }] } });
1560
+
1561
+ var IDLinkComponent = /** @class */ (function () {
1562
+ function IDLinkComponent() {
1563
+ this.link = null;
1564
+ this.notificationBadge = null;
1565
+ this.prependIcon = null;
1566
+ this.appendIcon = null;
1567
+ this.underlined = false;
1568
+ this.padding = null;
1569
+ this.outline = null;
1570
+ this.block = false;
1571
+ this.color = undefined;
1572
+ this.size = undefined;
1573
+ this.activeicon = false;
1574
+ this.external = false;
1575
+ this.slot = undefined;
1576
+ }
1577
+ return IDLinkComponent;
1578
+ }());
1579
+ IDLinkComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1580
+ 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-link \n [attr.underlined]=\"underlined ? '' : null\"\n [color]=\"color\"\n [size]=\"size\"\n [activeicon]=\"activeicon\"\n [padding]=\"padding\"\n [outline]=\"outline\"\n [block]=\"block\"\n [attr.slot]=\"slot\"\n >\n <ids-icon *ngIf=\"prependIcon !== null\"\n slot=\"prepend-icon\" \n [attr.name]=\"prependIcon?.name\"\n [attr.title]=\"prependIcon?.title\" \n [attr.color]=\"prependIcon?.color\" \n [attr.color2]=\"prependIcon?.color2\" \n [attr.size]=\"prependIcon?.size\" \n [attr.padding]=\"prependIcon?.padding\" \n [attr.colorpreset]=\"prependIcon?.colorpreset\" \n [attr.height]=\"prependIcon?.height\" \n [attr.width]=\"prependIcon?.width\"></ids-icon>\n <id-anchor *ngIf=\"link\" [link]=\"link\"></id-anchor>\n <ng-content *ngIf=\"!link\"></ng-content>\n <ids-icon *ngIf=\"appendIcon !== null\" \n slot=\"append-icon\" \n [attr.name]=\"appendIcon?.name\"\n [attr.title]=\"appendIcon?.title\" \n [attr.color]=\"appendIcon?.color\" \n [attr.color2]=\"appendIcon?.color2\"\n [attr.size]=\"appendIcon?.size\" \n [attr.padding]=\"appendIcon?.padding\" \n [attr.colorpreset]=\"appendIcon?.colorpreset\" \n [attr.height]=\"appendIcon?.height\" \n [attr.width]=\"appendIcon?.width\"></ids-icon>\n <ids-notification-badge \n *ngIf=\"notificationBadge !== null\"\n [attr.type]=\"notificationBadge.type\"\n [attr.size]=\"notificationBadge.size\">\n {{notificationBadge.value}}\n </ids-notification-badge>\n</ids-link>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1581
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, decorators: [{
1582
+ type: i0.Component,
1583
+ args: [{
1584
+ selector: 'id-link',
1585
+ templateUrl: './link.component.html'
1586
+ }]
1587
+ }], ctorParameters: function () { return []; }, propDecorators: { link: [{
1588
+ type: i0.Input
1589
+ }], notificationBadge: [{
1590
+ type: i0.Input
1591
+ }], prependIcon: [{
1592
+ type: i0.Input
1593
+ }], appendIcon: [{
1594
+ type: i0.Input
1595
+ }], underlined: [{
1596
+ type: i0.Input
1597
+ }], padding: [{
1598
+ type: i0.Input
1599
+ }], outline: [{
1600
+ type: i0.Input
1601
+ }], block: [{
1602
+ type: i0.Input
1603
+ }, {
1604
+ type: i0.HostBinding,
1605
+ args: ['class.ids-block']
1606
+ }], color: [{
1607
+ type: i0.Input
1608
+ }], size: [{
1609
+ type: i0.Input
1610
+ }], activeicon: [{
1611
+ type: i0.Input
1612
+ }], external: [{
1613
+ type: i0.Input
1614
+ }], slot: [{
1615
+ type: i0.Input
1616
+ }] } });
1617
+
1618
+ var IDAnchorModule = /** @class */ (function () {
1619
+ function IDAnchorModule() {
1620
+ }
1621
+ return IDAnchorModule;
1622
+ }());
1623
+ IDAnchorModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1624
+ IDAnchorModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, declarations: [IDAnchorComponent], imports: [i2.CommonModule,
1625
+ i3.RouterModule], exports: [IDAnchorComponent] });
1626
+ IDAnchorModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, imports: [[
1627
+ i2.CommonModule,
1628
+ i3.RouterModule,
1629
+ ]] });
1630
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDAnchorModule, decorators: [{
1631
+ type: i0.NgModule,
1632
+ args: [{
1633
+ declarations: [IDAnchorComponent],
1634
+ imports: [
1635
+ i2.CommonModule,
1636
+ i3.RouterModule,
1637
+ ],
1638
+ exports: [IDAnchorComponent]
1639
+ }]
1640
+ }] });
1641
+
1642
+ var IDLinkModule = /** @class */ (function () {
1643
+ function IDLinkModule() {
1644
+ }
1645
+ return IDLinkModule;
1646
+ }());
1647
+ IDLinkModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1648
+ 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] });
1649
+ IDLinkModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, imports: [[i2.CommonModule, IDAnchorModule]] });
1650
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkModule, decorators: [{
1651
+ type: i0.NgModule,
1652
+ args: [{
1653
+ declarations: [
1654
+ IDLinkComponent
1655
+ ],
1656
+ imports: [i2.CommonModule, IDAnchorModule],
1657
+ exports: [
1658
+ IDLinkComponent
1659
+ ],
1660
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1661
+ }]
1662
+ }] });
1663
+
1664
+ var IDListComponent = /** @class */ (function () {
1665
+ function IDListComponent() {
1666
+ }
1667
+ return IDListComponent;
1668
+ }());
1669
+ IDListComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1670
+ IDListComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListComponent, selector: "id-list", ngImport: i0__namespace, template: "<ids-list>\n <ng-content></ng-content>\n</ids-list>", encapsulation: i0__namespace.ViewEncapsulation.None });
1671
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListComponent, decorators: [{
1672
+ type: i0.Component,
1673
+ args: [{
1674
+ selector: 'id-list',
1675
+ templateUrl: './list.component.html',
1676
+ encapsulation: i0.ViewEncapsulation.None,
1677
+ }]
1678
+ }], ctorParameters: function () { return []; } });
1679
+
1680
+ var IDListModule = /** @class */ (function () {
1681
+ function IDListModule() {
1682
+ }
1683
+ return IDListModule;
1684
+ }());
1685
+ IDListModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1686
+ IDListModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListModule, declarations: [IDListComponent], exports: [IDListComponent] });
1687
+ IDListModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListModule });
1688
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListModule, decorators: [{
1689
+ type: i0.NgModule,
1690
+ args: [{
1691
+ declarations: [
1692
+ IDListComponent
1693
+ ],
1694
+ exports: [
1695
+ IDListComponent
1696
+ ],
1697
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1698
+ }]
1699
+ }] });
1700
+
1701
+ var IDListItemComponent = /** @class */ (function () {
1702
+ function IDListItemComponent() {
1703
+ this.headline = '';
1704
+ this.date = null;
1705
+ this.year = null;
1706
+ this.month = null;
1707
+ this.monthLabel = null;
1708
+ this.day = null;
1709
+ this.showDateLabel = false;
1710
+ }
1711
+ return IDListItemComponent;
1712
+ }());
1713
+ IDListItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1714
+ IDListItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemComponent, selector: "id-list-item", inputs: { headline: "headline", date: "date", year: "year", month: "month", monthLabel: "monthLabel", day: "day", showDateLabel: "showDateLabel" }, ngImport: i0__namespace, template: "<ids-list-item\r\n[headline]=\"headline\"\r\n[date]=\"date\"\r\n[year]=\"year\"\r\n[month]=\"month\"\r\n[monthlabel]=\"monthLabel\"\r\n[day]=\"day\"\r\n[showdatelabel]=\"showDateLabel\">\r\n <ng-content></ng-content>\r\n</ids-list-item>", encapsulation: i0__namespace.ViewEncapsulation.None });
1715
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemComponent, decorators: [{
1716
+ type: i0.Component,
1717
+ args: [{
1718
+ selector: 'id-list-item',
1719
+ templateUrl: './list-item.component.html',
1720
+ encapsulation: i0.ViewEncapsulation.None,
1721
+ }]
1722
+ }], ctorParameters: function () { return []; }, propDecorators: { headline: [{
1723
+ type: i0.Input
1724
+ }], date: [{
1725
+ type: i0.Input
1726
+ }], year: [{
1727
+ type: i0.Input
1728
+ }], month: [{
1729
+ type: i0.Input
1730
+ }], monthLabel: [{
1731
+ type: i0.Input
1732
+ }], day: [{
1733
+ type: i0.Input
1734
+ }], showDateLabel: [{
1735
+ type: i0.Input
1736
+ }] } });
1737
+
1738
+ var IDListItemModule = /** @class */ (function () {
1739
+ function IDListItemModule() {
1740
+ }
1741
+ return IDListItemModule;
1742
+ }());
1743
+ IDListItemModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1744
+ IDListItemModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemModule, declarations: [IDListItemComponent], exports: [IDListItemComponent] });
1745
+ IDListItemModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemModule });
1746
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemModule, decorators: [{
1747
+ type: i0.NgModule,
1748
+ args: [{
1749
+ declarations: [
1750
+ IDListItemComponent
1751
+ ],
1752
+ exports: [
1753
+ IDListItemComponent
1754
+ ],
1755
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1756
+ }]
1757
+ }] });
1758
+
1759
+ var IDListItemInfoComponent = /** @class */ (function () {
1760
+ function IDListItemInfoComponent() {
1761
+ }
1762
+ return IDListItemInfoComponent;
1763
+ }());
1764
+ IDListItemInfoComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemInfoComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1765
+ IDListItemInfoComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemInfoComponent, selector: "id-list-item-info", ngImport: i0__namespace, template: "<ids-list-item-info>\r\n <ng-content></ng-content>\r\n</ids-list-item-info>", styles: [":host { display: block; }"] });
1766
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemInfoComponent, decorators: [{
1767
+ type: i0.Component,
1768
+ args: [{
1769
+ selector: 'id-list-item-info',
1770
+ templateUrl: './list-item-info.component.html',
1771
+ styles: [':host { display: block; }']
1772
+ }]
1773
+ }], ctorParameters: function () { return []; } });
1774
+
1775
+ var IDListItemInfoModule = /** @class */ (function () {
1776
+ function IDListItemInfoModule() {
1777
+ }
1778
+ return IDListItemInfoModule;
1779
+ }());
1780
+ IDListItemInfoModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemInfoModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1781
+ IDListItemInfoModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemInfoModule, declarations: [IDListItemInfoComponent], exports: [IDListItemInfoComponent] });
1782
+ IDListItemInfoModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemInfoModule });
1783
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDListItemInfoModule, decorators: [{
1784
+ type: i0.NgModule,
1785
+ args: [{
1786
+ declarations: [
1787
+ IDListItemInfoComponent
1788
+ ],
1789
+ exports: [
1790
+ IDListItemInfoComponent
1791
+ ],
1792
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1793
+ }]
1794
+ }] });
1795
+
1796
+ var IDNotificationBadgeComponent = /** @class */ (function () {
1797
+ function IDNotificationBadgeComponent() {
1798
+ this.size = 'm';
1799
+ }
1800
+ return IDNotificationBadgeComponent;
1801
+ }());
1802
+ IDNotificationBadgeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1803
+ IDNotificationBadgeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size" }, ngImport: i0__namespace, template: "<ids-notification-badge\n [attr.size]=\"size\">\n <ng-content></ng-content>\n</ids-notification-badge>", encapsulation: i0__namespace.ViewEncapsulation.None });
1804
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeComponent, decorators: [{
1805
+ type: i0.Component,
1806
+ args: [{
1807
+ selector: 'id-notification-badge',
1808
+ templateUrl: './notification-badge.component.html',
1809
+ encapsulation: i0.ViewEncapsulation.None,
1810
+ }]
1811
+ }], ctorParameters: function () { return []; }, propDecorators: { size: [{
1812
+ type: i0.Input
1813
+ }] } });
1814
+
1815
+ var IDNotificationBadgeModule = /** @class */ (function () {
1816
+ function IDNotificationBadgeModule() {
1817
+ }
1818
+ return IDNotificationBadgeModule;
1819
+ }());
1820
+ IDNotificationBadgeModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1821
+ IDNotificationBadgeModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule, declarations: [IDNotificationBadgeComponent], exports: [IDNotificationBadgeComponent] });
1822
+ IDNotificationBadgeModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule });
1823
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDNotificationBadgeModule, decorators: [{
1824
+ type: i0.NgModule,
1825
+ args: [{
1826
+ declarations: [
1827
+ IDNotificationBadgeComponent
1828
+ ],
1829
+ exports: [
1830
+ IDNotificationBadgeComponent
1831
+ ],
1832
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1833
+ }]
1834
+ }] });
1835
+
1836
+ var IDNotificationBadge = /** @class */ (function () {
1837
+ function IDNotificationBadge(_value, _size, _type) {
1838
+ this._value = _value;
1839
+ this._size = _size;
1840
+ this._type = _type;
1841
+ }
1842
+ Object.defineProperty(IDNotificationBadge.prototype, "value", {
1843
+ get: function () {
1844
+ return this._value;
1845
+ },
1846
+ enumerable: false,
1847
+ configurable: true
1848
+ });
1849
+ Object.defineProperty(IDNotificationBadge.prototype, "size", {
1850
+ get: function () {
1851
+ return this._size;
1852
+ },
1853
+ enumerable: false,
1854
+ configurable: true
1855
+ });
1856
+ Object.defineProperty(IDNotificationBadge.prototype, "type", {
1857
+ get: function () {
1858
+ return this._type;
1859
+ },
1860
+ enumerable: false,
1861
+ configurable: true
1862
+ });
1863
+ return IDNotificationBadge;
1864
+ }());
1865
+
1866
+ var IDMobileMenuComponent = /** @class */ (function () {
1867
+ function IDMobileMenuComponent() {
1868
+ this.type = undefined;
1869
+ this.variation = undefined;
1870
+ this.items = undefined;
1871
+ }
1872
+ return IDMobileMenuComponent;
1873
+ }());
1874
+ IDMobileMenuComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1875
+ 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"] }] });
1876
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuComponent, decorators: [{
1877
+ type: i0.Component,
1878
+ args: [{
1879
+ selector: 'id-mobile-menu',
1880
+ templateUrl: './mobile-menu.component.html'
1881
+ }]
1882
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1883
+ type: i0.Input
1884
+ }], variation: [{
1885
+ type: i0.Input
1886
+ }], items: [{
1887
+ type: i0.Input
1888
+ }] } });
1889
+
1890
+ var IDMobileMenuModule = /** @class */ (function () {
1891
+ function IDMobileMenuModule() {
1892
+ }
1893
+ return IDMobileMenuModule;
1894
+ }());
1895
+ IDMobileMenuModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
1896
+ 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] });
1897
+ IDMobileMenuModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuModule, imports: [[i2.CommonModule, IDAnchorModule]] });
1898
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDMobileMenuModule, decorators: [{
1899
+ type: i0.NgModule,
1900
+ args: [{
1901
+ declarations: [
1902
+ IDMobileMenuComponent
1903
+ ],
1904
+ exports: [
1905
+ IDMobileMenuComponent
1906
+ ],
1907
+ imports: [i2.CommonModule, IDAnchorModule],
1908
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
1909
+ }]
1910
+ }] });
1911
+
1912
+ var IDMobileMenuItem = /** @class */ (function () {
1913
+ function IDMobileMenuItem(_props) {
1914
+ this._props = _props;
1915
+ }
1916
+ Object.defineProperty(IDMobileMenuItem.prototype, "headline", {
1917
+ get: function () {
1918
+ return this._props.headline;
1919
+ },
1920
+ enumerable: false,
1921
+ configurable: true
1922
+ });
1923
+ Object.defineProperty(IDMobileMenuItem.prototype, "link", {
1924
+ get: function () {
1925
+ return this._props.link;
1926
+ },
1927
+ enumerable: false,
1928
+ configurable: true
1929
+ });
1930
+ Object.defineProperty(IDMobileMenuItem.prototype, "items", {
1931
+ get: function () {
1932
+ return this._props.items;
1933
+ },
1934
+ enumerable: false,
1935
+ configurable: true
1936
+ });
1937
+ Object.defineProperty(IDMobileMenuItem.prototype, "expanded", {
1938
+ get: function () {
1939
+ return this._props.expanded;
1940
+ },
1941
+ enumerable: false,
1942
+ configurable: true
1943
+ });
1944
+ Object.defineProperty(IDMobileMenuItem.prototype, "secondary", {
1945
+ get: function () {
1946
+ return this._props.secondary;
1947
+ },
1948
+ enumerable: false,
1949
+ configurable: true
1950
+ });
1951
+ Object.defineProperty(IDMobileMenuItem.prototype, "active", {
1952
+ get: function () {
1953
+ return this._props.active;
1954
+ },
1955
+ enumerable: false,
1956
+ configurable: true
1957
+ });
1958
+ Object.defineProperty(IDMobileMenuItem.prototype, "variation", {
1959
+ get: function () {
1960
+ return this._props.variation;
1961
+ },
1962
+ enumerable: false,
1963
+ configurable: true
1964
+ });
1965
+ Object.defineProperty(IDMobileMenuItem.prototype, "expansionToggled", {
1966
+ get: function () {
1967
+ return this._props.expansionToggled;
1968
+ },
1969
+ enumerable: false,
1970
+ configurable: true
1971
+ });
1972
+ IDMobileMenuItem.prototype.togleExpansion = function () {
1973
+ if (this._props.expansionToggled) {
1974
+ this._props.expansionToggled();
1975
+ }
1976
+ };
1977
+ return IDMobileMenuItem;
1978
+ }());
1979
+
1980
+ var IDFooterComponent = /** @class */ (function () {
1981
+ function IDFooterComponent() {
1982
+ this.type = '';
1983
+ this.headline = '';
1984
+ this.servicename = '';
1985
+ this.subheadline = '';
1986
+ this.mobileMenuItems = undefined;
1987
+ }
1988
+ return IDFooterComponent;
1989
+ }());
1990
+ IDFooterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1991
+ 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"] }] });
1992
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterComponent, decorators: [{
1993
+ type: i0.Component,
1994
+ args: [{
1995
+ selector: 'id-footer',
1996
+ templateUrl: './footer.component.html'
1997
+ }]
1998
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
1999
+ type: i0.Input
2000
+ }], headline: [{
2001
+ type: i0.Input
2002
+ }], servicename: [{
2003
+ type: i0.Input
2004
+ }], subheadline: [{
2005
+ type: i0.Input
2006
+ }], mobileMenuItems: [{
2007
+ type: i0.Input
2008
+ }] } });
2009
+
2010
+ var IDFooterModule = /** @class */ (function () {
2011
+ function IDFooterModule() {
2012
+ }
2013
+ return IDFooterModule;
2014
+ }());
2015
+ IDFooterModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2016
+ 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] });
2017
+ IDFooterModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterModule, imports: [[i2.CommonModule, IDAnchorModule]] });
2018
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDFooterModule, decorators: [{
2019
+ type: i0.NgModule,
2020
+ args: [{
2021
+ declarations: [
2022
+ IDFooterComponent
2023
+ ],
2024
+ exports: [
2025
+ IDFooterComponent
2026
+ ],
2027
+ imports: [i2.CommonModule, IDAnchorModule],
2028
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
2029
+ }]
2030
+ }] });
2031
+
2032
+ var IDHeaderComponent = /** @class */ (function () {
2033
+ function IDHeaderComponent() {
2034
+ this.type = '';
2035
+ this.brandtext = '';
2036
+ this.hideRegionPicker = false;
2037
+ this.hideBrand = false;
2038
+ this.pickRegionText = 'Välj region';
2039
+ this.srLogoLabel = 'Logotyp';
2040
+ }
2041
+ return IDHeaderComponent;
2042
+ }());
2043
+ IDHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2044
+ 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"] }] });
2045
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderComponent, decorators: [{
2046
+ type: i0.Component,
2047
+ args: [{
2048
+ selector: 'id-header',
2049
+ templateUrl: './header.component.html'
2050
+ }]
2051
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
2052
+ type: i0.Input
2053
+ }], brandtext: [{
2054
+ type: i0.Input
2055
+ }], hideRegionPicker: [{
2056
+ type: i0.Input
2057
+ }], hideBrand: [{
2058
+ type: i0.Input
2059
+ }], pickRegionText: [{
2060
+ type: i0.Input
2061
+ }], regionIcon: [{
2062
+ type: i0.Input
2063
+ }], width: [{
2064
+ type: i0.Input
2065
+ }], srLogoLabel: [{
2066
+ type: i0.Input
2067
+ }], items: [{
2068
+ type: i0.Input
2069
+ }], avatar: [{
2070
+ type: i0.Input
2071
+ }], navItems: [{
2072
+ type: i0.Input
2073
+ }], mobileItems: [{
2074
+ type: i0.Input
2075
+ }], mobileMenuItems: [{
2076
+ type: i0.Input
2077
+ }] } });
2078
+
2079
+ var IDHeaderModule = /** @class */ (function () {
2080
+ function IDHeaderModule() {
2081
+ }
2082
+ return IDHeaderModule;
2083
+ }());
2084
+ IDHeaderModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2085
+ 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] });
2086
+ IDHeaderModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, imports: [[i2.CommonModule, IDAnchorModule]] });
2087
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDHeaderModule, decorators: [{
2088
+ type: i0.NgModule,
2089
+ args: [{
2090
+ declarations: [
2091
+ IDHeaderComponent
2092
+ ],
2093
+ exports: [
2094
+ IDHeaderComponent
2095
+ ],
2096
+ imports: [i2.CommonModule, IDAnchorModule],
2097
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
2098
+ }]
2099
+ }] });
2100
+
2101
+ var IDHeaderItem = /** @class */ (function () {
2102
+ function IDHeaderItem(_props) {
2103
+ this._props = _props;
2104
+ }
2105
+ Object.defineProperty(IDHeaderItem.prototype, "iconName", {
2106
+ get: function () {
2107
+ return this._props.iconName;
2108
+ },
2109
+ enumerable: false,
2110
+ configurable: true
2111
+ });
2112
+ Object.defineProperty(IDHeaderItem.prototype, "link", {
2113
+ get: function () {
2114
+ return this._props.link;
2115
+ },
2116
+ enumerable: false,
2117
+ configurable: true
2118
+ });
2119
+ Object.defineProperty(IDHeaderItem.prototype, "mobile", {
2120
+ get: function () {
2121
+ return this._props.mobile;
2122
+ },
2123
+ enumerable: false,
2124
+ configurable: true
2125
+ });
2126
+ return IDHeaderItem;
2127
+ }());
2128
+
2129
+ var IDHeaderAvatar = /** @class */ (function () {
2130
+ function IDHeaderAvatar(_props) {
2131
+ this._props = _props;
2132
+ }
2133
+ Object.defineProperty(IDHeaderAvatar.prototype, "username", {
2134
+ get: function () {
2135
+ return this._props.username;
2136
+ },
2137
+ enumerable: false,
2138
+ configurable: true
2139
+ });
2140
+ Object.defineProperty(IDHeaderAvatar.prototype, "linkLeft", {
2141
+ get: function () {
2142
+ return this._props.linkLeft;
2143
+ },
2144
+ enumerable: false,
2145
+ configurable: true
2146
+ });
2147
+ Object.defineProperty(IDHeaderAvatar.prototype, "linkRight", {
2148
+ get: function () {
2149
+ return this._props.linkRight;
2150
+ },
2151
+ enumerable: false,
2152
+ configurable: true
2153
+ });
2154
+ Object.defineProperty(IDHeaderAvatar.prototype, "serviceName", {
2155
+ get: function () {
2156
+ return this._props.serviceName;
2157
+ },
2158
+ enumerable: false,
2159
+ configurable: true
2160
+ });
2161
+ return IDHeaderAvatar;
2162
+ }());
2163
+
2164
+ var IDHeaderNavItem = /** @class */ (function () {
2165
+ function IDHeaderNavItem(_props) {
2166
+ this._props = _props;
2167
+ }
2168
+ Object.defineProperty(IDHeaderNavItem.prototype, "label", {
2169
+ get: function () {
2170
+ return this._props.label;
2171
+ },
2172
+ enumerable: false,
2173
+ configurable: true
2174
+ });
2175
+ Object.defineProperty(IDHeaderNavItem.prototype, "col1", {
2176
+ get: function () {
2177
+ return this._props.col1;
2178
+ },
2179
+ enumerable: false,
2180
+ configurable: true
2181
+ });
2182
+ Object.defineProperty(IDHeaderNavItem.prototype, "col2", {
2183
+ get: function () {
2184
+ return this._props.col2;
2185
+ },
2186
+ enumerable: false,
2187
+ configurable: true
2188
+ });
2189
+ Object.defineProperty(IDHeaderNavItem.prototype, "col3", {
2190
+ get: function () {
2191
+ return this._props.col3;
2192
+ },
2193
+ enumerable: false,
2194
+ configurable: true
2195
+ });
2196
+ Object.defineProperty(IDHeaderNavItem.prototype, "headline", {
2197
+ get: function () {
2198
+ return this._props.headline;
2199
+ },
2200
+ enumerable: false,
2201
+ configurable: true
2202
+ });
2203
+ Object.defineProperty(IDHeaderNavItem.prototype, "paragraph", {
2204
+ get: function () {
2205
+ return this._props.paragraph;
2206
+ },
2207
+ enumerable: false,
2208
+ configurable: true
2209
+ });
2210
+ Object.defineProperty(IDHeaderNavItem.prototype, "link", {
2211
+ get: function () {
2212
+ return this._props.link;
2213
+ },
2214
+ enumerable: false,
2215
+ configurable: true
2216
+ });
2217
+ Object.defineProperty(IDHeaderNavItem.prototype, "paragraphLink", {
2218
+ get: function () {
2219
+ return this._props.pragraphLink;
2220
+ },
2221
+ enumerable: false,
2222
+ configurable: true
2223
+ });
2224
+ return IDHeaderNavItem;
2225
+ }());
2226
+
2227
+ var IDTabsComponent = /** @class */ (function () {
2228
+ function IDTabsComponent() {
2229
+ }
2230
+ return IDTabsComponent;
2231
+ }());
2232
+ IDTabsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2233
+ 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>" });
2234
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsComponent, decorators: [{
2235
+ type: i0.Component,
2236
+ args: [{
2237
+ selector: 'id-tabs',
2238
+ templateUrl: './tabs.component.html'
2239
+ }]
2240
+ }], ctorParameters: function () { return []; } });
2241
+
2242
+ var IDTabPanelComponent = /** @class */ (function () {
2243
+ function IDTabPanelComponent(elementRef) {
2244
+ this.elementRef = elementRef;
2245
+ elementRef.nativeElement.setAttribute('slot', 'tab-panel');
2246
+ }
2247
+ return IDTabPanelComponent;
2248
+ }());
2249
+ 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 });
2250
+ 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>" });
2251
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabPanelComponent, decorators: [{
2252
+ type: i0.Component,
2253
+ args: [{
2254
+ selector: 'id-tab-panel',
2255
+ templateUrl: './tab-panel.component.html'
2256
+ }]
2257
+ }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; } });
2258
+
2259
+ var IDTabComponent = /** @class */ (function () {
2260
+ function IDTabComponent(elementRef) {
2261
+ this.elementRef = elementRef;
2262
+ this.label = '';
2263
+ this.icon = '';
2264
+ this.selected = false;
2265
+ elementRef.nativeElement.setAttribute('slot', 'tab');
2266
+ }
2267
+ return IDTabComponent;
2268
+ }());
2269
+ 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 });
2270
+ 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>" });
2271
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabComponent, decorators: [{
2272
+ type: i0.Component,
2273
+ args: [{
2274
+ selector: 'id-tab',
2275
+ templateUrl: './tab.component.html'
2276
+ }]
2277
+ }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; }, propDecorators: { label: [{
2278
+ type: i0.Input
2279
+ }], icon: [{
2280
+ type: i0.Input
2281
+ }], selected: [{
2282
+ type: i0.Input
2283
+ }] } });
2284
+
2285
+ var IDTabsModule = /** @class */ (function () {
2286
+ function IDTabsModule() {
2287
+ }
2288
+ return IDTabsModule;
2289
+ }());
2290
+ IDTabsModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2291
+ IDTabsModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, declarations: [IDTabsComponent,
2292
+ IDTabComponent,
2293
+ IDTabPanelComponent], imports: [i2.CommonModule], exports: [IDTabsComponent,
2294
+ IDTabComponent,
2295
+ IDTabPanelComponent] });
2296
+ IDTabsModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, imports: [[i2.CommonModule]] });
2297
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDTabsModule, decorators: [{
2298
+ type: i0.NgModule,
2299
+ args: [{
2300
+ declarations: [
2301
+ IDTabsComponent,
2302
+ IDTabComponent,
2303
+ IDTabPanelComponent
2304
+ ],
2305
+ imports: [i2.CommonModule],
2306
+ exports: [
2307
+ IDTabsComponent,
2308
+ IDTabComponent,
2309
+ IDTabPanelComponent
2310
+ ],
2311
+ schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
2312
+ }]
2313
+ }] });
2314
+
902
2315
  /*
903
2316
  * Public API Surface of ids-angular
904
2317
  */
@@ -923,12 +2336,40 @@
923
2336
  exports.IDColumnModule = IDColumnModule;
924
2337
  exports.IDContainerComponent = IDContainerComponent;
925
2338
  exports.IDContainerModule = IDContainerModule;
2339
+ exports.IDDateLabelComponent = IDDateLabelComponent;
2340
+ exports.IDDateLabelModule = IDDateLabelModule;
926
2341
  exports.IDErrorMessageComponent = IDErrorMessageComponent;
927
2342
  exports.IDErrorMessageModule = IDErrorMessageModule;
2343
+ exports.IDFooterComponent = IDFooterComponent;
2344
+ exports.IDFooterModule = IDFooterModule;
2345
+ exports.IDHeaderAvatar = IDHeaderAvatar;
2346
+ exports.IDHeaderComponent = IDHeaderComponent;
2347
+ exports.IDHeaderItem = IDHeaderItem;
2348
+ exports.IDHeaderModule = IDHeaderModule;
2349
+ exports.IDHeaderNavItem = IDHeaderNavItem;
2350
+ exports.IDIcon = IDIcon;
928
2351
  exports.IDIconComponent = IDIconComponent;
929
2352
  exports.IDIconModule = IDIconModule;
930
2353
  exports.IDInputComponent = IDInputComponent;
931
2354
  exports.IDInputModule = IDInputModule;
2355
+ exports.IDLink = IDLink;
2356
+ exports.IDLinkComponent = IDLinkComponent;
2357
+ exports.IDLinkFunction = IDLinkFunction;
2358
+ exports.IDLinkModule = IDLinkModule;
2359
+ exports.IDLinkRoute = IDLinkRoute;
2360
+ exports.IDLinkWeb = IDLinkWeb;
2361
+ exports.IDListComponent = IDListComponent;
2362
+ exports.IDListItemComponent = IDListItemComponent;
2363
+ exports.IDListItemInfoComponent = IDListItemInfoComponent;
2364
+ exports.IDListItemInfoModule = IDListItemInfoModule;
2365
+ exports.IDListItemModule = IDListItemModule;
2366
+ exports.IDListModule = IDListModule;
2367
+ exports.IDMobileMenuComponent = IDMobileMenuComponent;
2368
+ exports.IDMobileMenuItem = IDMobileMenuItem;
2369
+ exports.IDMobileMenuModule = IDMobileMenuModule;
2370
+ exports.IDNotificationBadge = IDNotificationBadge;
2371
+ exports.IDNotificationBadgeComponent = IDNotificationBadgeComponent;
2372
+ exports.IDNotificationBadgeModule = IDNotificationBadgeModule;
932
2373
  exports.IDRadioComponent = IDRadioComponent;
933
2374
  exports.IDRadioGroupComponent = IDRadioGroupComponent;
934
2375
  exports.IDRadioModule = IDRadioModule;
@@ -942,6 +2383,10 @@
942
2383
  exports.IDSelectMultipleModule = IDSelectMultipleModule;
943
2384
  exports.IDSpinnerComponent = IDSpinnerComponent;
944
2385
  exports.IDSpinnerModule = IDSpinnerModule;
2386
+ exports.IDTabComponent = IDTabComponent;
2387
+ exports.IDTabPanelComponent = IDTabPanelComponent;
2388
+ exports.IDTabsComponent = IDTabsComponent;
2389
+ exports.IDTabsModule = IDTabsModule;
945
2390
  exports.IDTextareaComponent = IDTextareaComponent;
946
2391
  exports.IDTextareaModule = IDTextareaModule;
947
2392
  exports.IDTimeComponent = IDTimeComponent;