@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
@@ -0,0 +1,20 @@
1
+ import { IDHeaderItem, IDHeaderAvatar, IDHeaderNavItem, IDMobileMenuItem } from 'ids-angular';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDHeaderComponent {
4
+ constructor();
5
+ type: String;
6
+ brandtext: String;
7
+ hideRegionPicker: boolean;
8
+ hideBrand: boolean;
9
+ pickRegionText: String;
10
+ regionIcon: String | undefined;
11
+ width: String | undefined;
12
+ srLogoLabel: String;
13
+ items: IDHeaderItem[] | undefined;
14
+ avatar: IDHeaderAvatar | undefined;
15
+ navItems: IDHeaderNavItem[] | undefined;
16
+ mobileItems: IDHeaderItem[] | undefined;
17
+ mobileMenuItems: IDMobileMenuItem[] | undefined;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDHeaderComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDHeaderComponent, "id-header", never, { "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"; }, {}, never, ["[avatar]", "*", "[avatarMobile]"]>;
20
+ }
@@ -0,0 +1,10 @@
1
+ import '@inera/ids-core/components/header/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./header.component";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "../../internals/anchor.module";
6
+ export declare class IDHeaderModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDHeaderModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDHeaderModule, [typeof i1.IDHeaderComponent], [typeof i2.CommonModule, typeof i3.IDAnchorModule], [typeof i1.IDHeaderComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDHeaderModule>;
10
+ }
File without changes
@@ -0,0 +1,21 @@
1
+ import { IDIcon, IDLink } from 'ids-angular';
2
+ import { IDNotificationBadge } from '../../classes/notification-badge';
3
+ import * as i0 from "@angular/core";
4
+ export declare class IDLinkComponent {
5
+ constructor();
6
+ link: IDLink | null;
7
+ notificationBadge: IDNotificationBadge | null;
8
+ prependIcon: IDIcon | null;
9
+ appendIcon: IDIcon | null;
10
+ underlined: Boolean;
11
+ padding: string | null;
12
+ outline: string | null;
13
+ block: Boolean;
14
+ color: String | undefined;
15
+ size: String | undefined;
16
+ activeicon: Boolean;
17
+ external: Boolean;
18
+ slot: string | undefined;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDLinkComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDLinkComponent, "id-link", never, { "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"; }, {}, never, ["*"]>;
21
+ }
@@ -0,0 +1,11 @@
1
+ import '@inera/ids-core/components/link/register';
2
+ import '@inera/ids-core/components/icon/register';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./link.component";
5
+ import * as i2 from "@angular/common";
6
+ import * as i3 from "../../internals/anchor.module";
7
+ export declare class IDLinkModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDLinkModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDLinkModule, [typeof i1.IDLinkComponent], [typeof i2.CommonModule, typeof i3.IDAnchorModule], [typeof i1.IDLinkComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDLinkModule>;
11
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDListItemInfoComponent {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDListItemInfoComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDListItemInfoComponent, "id-list-item-info", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./list-item-info.component";
3
+ export declare class IDListItemInfoModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDListItemInfoModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDListItemInfoModule, [typeof i1.IDListItemInfoComponent], never, [typeof i1.IDListItemInfoComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDListItemInfoModule>;
7
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDListItemComponent {
3
+ headline: string;
4
+ date: Date | null;
5
+ year: string | null;
6
+ month: string | null;
7
+ monthLabel: string | null;
8
+ day: string | null;
9
+ showDateLabel: boolean;
10
+ constructor();
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDListItemComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDListItemComponent, "id-list-item", never, { "headline": "headline"; "date": "date"; "year": "year"; "month": "month"; "monthLabel": "monthLabel"; "day": "day"; "showDateLabel": "showDateLabel"; }, {}, never, ["*"]>;
13
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./list-item.component";
3
+ export declare class IDListItemModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDListItemModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDListItemModule, [typeof i1.IDListItemComponent], never, [typeof i1.IDListItemComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDListItemModule>;
7
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDListComponent {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDListComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDListComponent, "id-list", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/list/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./list.component";
4
+ export declare class IDListModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDListModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDListModule, [typeof i1.IDListComponent], never, [typeof i1.IDListComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDListModule>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import { IDMobileMenuItem } from 'ids-angular';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDMobileMenuComponent {
4
+ constructor();
5
+ type: string | undefined;
6
+ variation: string | undefined;
7
+ items: IDMobileMenuItem[] | undefined;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDMobileMenuComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDMobileMenuComponent, "id-mobile-menu", never, { "type": "type"; "variation": "variation"; "items": "items"; }, {}, never, never>;
10
+ }
@@ -0,0 +1,10 @@
1
+ import '@inera/ids-core/components/mobile/menu/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./mobile-menu.component";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "../../../internals/anchor.module";
6
+ export declare class IDMobileMenuModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDMobileMenuModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDMobileMenuModule, [typeof i1.IDMobileMenuComponent], [typeof i2.CommonModule, typeof i3.IDAnchorModule], [typeof i1.IDMobileMenuComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDMobileMenuModule>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDNotificationBadgeComponent {
3
+ constructor();
4
+ size: 's' | 'm' | 'lg';
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDNotificationBadgeComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "size": "size"; }, {}, never, ["*"]>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/notification/badge/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./notification-badge.component";
4
+ export declare class IDNotificationBadgeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDNotificationBadgeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDNotificationBadgeModule, [typeof i1.IDNotificationBadgeComponent], never, [typeof i1.IDNotificationBadgeComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDNotificationBadgeModule>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDTabPanelComponent {
4
+ private elementRef;
5
+ constructor(elementRef: ElementRef<HTMLElement>);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTabPanelComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTabPanelComponent, "id-tab-panel", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,11 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDTabComponent {
4
+ private elementRef;
5
+ label: String;
6
+ icon: String;
7
+ selected: Boolean;
8
+ constructor(elementRef: ElementRef<HTMLElement>);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTabComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTabComponent, "id-tab", never, { "label": "label"; "icon": "icon"; "selected": "selected"; }, {}, never, never>;
11
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDTabsComponent {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTabsComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTabsComponent, "id-tabs", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,12 @@
1
+ import '@inera/ids-core/components/tabs/register';
2
+ import '@inera/ids-core/components/icon/register';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./tabs.component";
5
+ import * as i2 from "./tab/tab.component";
6
+ import * as i3 from "./panel/tab-panel.component";
7
+ import * as i4 from "@angular/common";
8
+ export declare class IDTabsModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTabsModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDTabsModule, [typeof i1.IDTabsComponent, typeof i2.IDTabComponent, typeof i3.IDTabPanelComponent], [typeof i4.CommonModule], [typeof i1.IDTabsComponent, typeof i2.IDTabComponent, typeof i3.IDTabPanelComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDTabsModule>;
12
+ }
@@ -0,0 +1,30 @@
1
+ import { SimpleChanges } from '@angular/core';
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
+ import { IDLink } from '../classes/link/IDLink';
4
+ import { IDLinkFunction } from '../classes/link/IDLinkFunction';
5
+ import { IDLinkRoute } from '../classes/link/IDLinkRoute';
6
+ import { IDLinkWeb } from '../classes/link/IDLinkWeb';
7
+ import * as i0 from "@angular/core";
8
+ export declare class IDAnchorComponent {
9
+ private sanitizer;
10
+ linkType: string;
11
+ isLinkExternal: boolean;
12
+ isLinkRoute: boolean;
13
+ isLinkWeb: boolean;
14
+ isLinkFunction: boolean;
15
+ classes: string;
16
+ scriptHref: import("@angular/platform-browser").SafeUrl;
17
+ /** LinkObject */
18
+ link: IDLink | undefined;
19
+ /** Apply classes to <a> element */
20
+ contextClasses: string[];
21
+ constructor(sanitizer: DomSanitizer);
22
+ private setLinkType;
23
+ private setClasses;
24
+ get linkWeb(): IDLinkWeb;
25
+ get linkRoute(): IDLinkRoute;
26
+ get linkFunction(): IDLinkFunction;
27
+ ngOnChanges(changes: SimpleChanges): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDAnchorComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDAnchorComponent, "id-anchor", never, { "link": "link"; "contextClasses": "contextClasses"; }, {}, never, never>;
30
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./anchor.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/router";
5
+ export declare class IDAnchorModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDAnchorModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDAnchorModule, [typeof i1.IDAnchorComponent], [typeof i2.CommonModule, typeof i3.RouterModule], [typeof i1.IDAnchorComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDAnchorModule>;
9
+ }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "1.1.0",
3
+ "version": "1.5.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.2.0",
6
6
  "@angular/core": "^12.2.0",
7
- "@inera/ids-core": "1.2.1"
7
+ "@inera/ids-core": "1.5.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"
package/public-api.d.ts CHANGED
@@ -1,39 +1,76 @@
1
- export * from './lib/alert/alert.component';
2
- export * from './lib/alert/alert.module';
3
- export * from './lib/alert-global/alert-global.component';
4
- export * from './lib/alert-global/alert-global.module';
5
- export * from './lib/button/button.component';
6
- export * from './lib/button/button.module';
7
- export * from './lib/button-group/button-group.component';
8
- export * from './lib/button-group/button-group.module';
9
- export * from './lib/icon/icon.component';
10
- export * from './lib/icon/icon.module';
11
- export * from './lib/form/input/input.component';
12
- export * from './lib/form/input/input.module';
13
- export * from './lib/form/checkbox/checkbox.component';
14
- export * from './lib/form/checkbox/checkbox.module';
15
- export * from './lib/form/checkbox-group/checkbox-group.component';
16
- export * from './lib/form/checkbox-group/checkbox-group.module';
17
- export * from './lib/form/error-message/error-message.component';
18
- export * from './lib/form/error-message/error-message.module';
19
- export * from './lib/form/radio/radio.component';
20
- export * from './lib/form/radio/radio-group.component';
21
- export * from './lib/form/radio/radio.module';
22
- export * from './lib/form/range/range.component';
23
- export * from './lib/form/range/range.module';
24
- export * from './lib/form/select/select.component';
25
- export * from './lib/form/select/select.module';
26
- export * from './lib/form/select-multiple/select-multiple.component';
27
- export * from './lib/form/select-multiple/select-multiple.module';
28
- export * from './lib/form/spinner/spinner.component';
29
- export * from './lib/form/spinner/spinner.module';
30
- export * from './lib/form/time/time.component';
31
- export * from './lib/form/time/time.module';
32
- export * from './lib/form/textarea/textarea.component';
33
- export * from './lib/form/textarea/textarea.module';
34
- export * from './lib/grid/row/row.component';
35
- export * from './lib/grid/row/row.module';
36
- export * from './lib/grid/column/column.component';
37
- export * from './lib/grid/column/column.module';
38
- export * from './lib/grid/container/container.component';
39
- export * from './lib/grid/container/container.module';
1
+ export * from './lib/components/alert/alert.component';
2
+ export * from './lib/components/alert/alert.module';
3
+ export * from './lib/components/alert-global/alert-global.component';
4
+ export * from './lib/components/alert-global/alert-global.module';
5
+ export * from './lib/components/button/button.component';
6
+ export * from './lib/components/button/button.module';
7
+ export * from './lib/components/button-group/button-group.component';
8
+ export * from './lib/components/button-group/button-group.module';
9
+ export * from './lib/components/date-label/date-label.component';
10
+ export * from './lib/components/date-label/date-label.module';
11
+ export * from './lib/classes/icon/IDIcon';
12
+ export * from './lib/classes/icon/IDIconProps';
13
+ export * from './lib/components/icon/icon.component';
14
+ export * from './lib/components/icon/icon.module';
15
+ export * from './lib/components/form/input/input.component';
16
+ export * from './lib/components/form/input/input.module';
17
+ export * from './lib/components/form/checkbox/checkbox.component';
18
+ export * from './lib/components/form/checkbox/checkbox.module';
19
+ export * from './lib/components/form/checkbox-group/checkbox-group.component';
20
+ export * from './lib/components/form/checkbox-group/checkbox-group.module';
21
+ export * from './lib/components/form/error-message/error-message.component';
22
+ export * from './lib/components/form/error-message/error-message.module';
23
+ export * from './lib/components/form/radio/radio.component';
24
+ export * from './lib/components/form/radio/radio-group.component';
25
+ export * from './lib/components/form/radio/radio.module';
26
+ export * from './lib/components/form/range/range.component';
27
+ export * from './lib/components/form/range/range.module';
28
+ export * from './lib/components/form/select/select.component';
29
+ export * from './lib/components/form/select/select.module';
30
+ export * from './lib/components/form/select-multiple/select-multiple.component';
31
+ export * from './lib/components/form/select-multiple/select-multiple.module';
32
+ export * from './lib/components/form/spinner/spinner.component';
33
+ export * from './lib/components/form/spinner/spinner.module';
34
+ export * from './lib/components/form/time/time.component';
35
+ export * from './lib/components/form/time/time.module';
36
+ export * from './lib/components/form/textarea/textarea.component';
37
+ export * from './lib/components/form/textarea/textarea.module';
38
+ export * from './lib/components/grid/row/row.component';
39
+ export * from './lib/components/grid/row/row.module';
40
+ export * from './lib/components/grid/column/column.component';
41
+ export * from './lib/components/grid/column/column.module';
42
+ export * from './lib/components/grid/container/container.component';
43
+ export * from './lib/components/grid/container/container.module';
44
+ export * from './lib/components/link/link.component';
45
+ export * from './lib/components/link/link.module';
46
+ export * from './lib/classes/link/IDLink';
47
+ export * from './lib/classes/link/IDLinkFunction';
48
+ export * from './lib/classes/link/IDLinkRoute';
49
+ export * from './lib/classes/link/IDLinkWeb';
50
+ export * from './lib/components/list/list.component';
51
+ export * from './lib/components/list/list.module';
52
+ export * from './lib/components/list/item/list-item.component';
53
+ export * from './lib/components/list/item/list-item.module';
54
+ export * from './lib/components/list/item/info/list-item-info.component';
55
+ export * from './lib/components/list/item/info/list-item-info.module';
56
+ export * from './lib/components/notification/badge/notification-badge.component';
57
+ export * from './lib/components/notification/badge/notification-badge.module';
58
+ export * from './lib/classes/notification-badge';
59
+ export * from './lib/components/mobile/menu/mobile-menu.component';
60
+ export * from './lib/components/mobile/menu/mobile-menu.module';
61
+ export * from './lib/classes/mobile/MobileMenuItem';
62
+ export * from './lib/classes/mobile/MobileMenuItemProps';
63
+ export * from './lib/components/footer/footer.component';
64
+ export * from './lib/components/footer/footer.module';
65
+ export * from './lib/components/header/header.component';
66
+ export * from './lib/components/header/header.module';
67
+ export * from './lib/classes/header/IDHeaderItem';
68
+ export * from './lib/classes/header/IDHeaderItemProps';
69
+ export * from './lib/classes/header/IDHeaderAvatar';
70
+ export * from './lib/classes/header/IDHeaderAvatarProps';
71
+ export * from './lib/classes/header/IDHeaderNavItem';
72
+ export * from './lib/classes/header/IDHeaderNavItemProps';
73
+ export * from './lib/components/tabs/tabs.component';
74
+ export * from './lib/components/tabs/panel/tab-panel.component';
75
+ export * from './lib/components/tabs/tab/tab.component';
76
+ export * from './lib/components/tabs/tabs.module';
@@ -1,39 +0,0 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- export class IDAlertComponent {
5
- constructor() {
6
- this.dismissible = false;
7
- this.headline = '';
8
- this.live = '';
9
- this.type = '';
10
- this.srCloseText = '';
11
- this.srIconTitle = '';
12
- this.closed = new EventEmitter();
13
- }
14
- }
15
- IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
16
- IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", headline: "headline", live: "live", type: "type", srCloseText: "srCloseText", srIconTitle: "srIconTitle" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [live]=\"live\"\n [type]=\"type\"\n [srclosetext]=\"srCloseText\"\n [srIconTitle]=\"srIconTitle\"\n (closed)=\"closed.emit(true)\">\n <h3 *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
17
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
18
- type: Component,
19
- args: [{
20
- selector: 'id-alert',
21
- templateUrl: './alert.component.html',
22
- styles: [':host { display: block; }']
23
- }]
24
- }], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
25
- type: Input
26
- }], headline: [{
27
- type: Input
28
- }], live: [{
29
- type: Input
30
- }], type: [{
31
- type: Input
32
- }], srCloseText: [{
33
- type: Input
34
- }], srIconTitle: [{
35
- type: Input
36
- }], closed: [{
37
- type: Output
38
- }] } });
39
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvc3JjL2xpYi9hbGVydC9hbGVydC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9zcmMvbGliL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQXFCLE1BQU0sZUFBZSxDQUFDOzs7QUFPbEcsTUFBTSxPQUFPLGdCQUFnQjtJQUUzQjtRQUdBLGdCQUFXLEdBQVksS0FBSyxDQUFDO1FBRzdCLGFBQVEsR0FBVyxFQUFFLENBQUM7UUFHdEIsU0FBSSxHQUFXLEVBQUUsQ0FBQztRQUdsQixTQUFJLEdBQVcsRUFBRSxDQUFDO1FBR2xCLGdCQUFXLEdBQVcsRUFBRSxDQUFDO1FBR3pCLGdCQUFXLEdBQVcsRUFBRSxDQUFDO1FBR3pCLFdBQU0sR0FBMEIsSUFBSSxZQUFZLEVBQUUsQ0FBQztJQXJCbkMsQ0FBQzs7OEdBRk4sZ0JBQWdCO2tHQUFoQixnQkFBZ0IsaU9DUDdCLDBSQVdZOzRGREpDLGdCQUFnQjtrQkFMNUIsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsVUFBVTtvQkFDcEIsV0FBVyxFQUFFLHdCQUF3QjtvQkFDckMsTUFBTSxFQUFFLENBQUMsMkJBQTJCLENBQUM7aUJBQ3RDOzBFQU1DLFdBQVc7c0JBRFYsS0FBSztnQkFJTixRQUFRO3NCQURQLEtBQUs7Z0JBSU4sSUFBSTtzQkFESCxLQUFLO2dCQUlOLElBQUk7c0JBREgsS0FBSztnQkFJTixXQUFXO3NCQURWLEtBQUs7Z0JBSU4sV0FBVztzQkFEVixLQUFLO2dCQUlOLE1BQU07c0JBREwsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2lkLWFsZXJ0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2FsZXJ0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVzOiBbJzpob3N0IHsgZGlzcGxheTogYmxvY2s7IH0nXVxufSlcbmV4cG9ydCBjbGFzcyBJREFsZXJ0Q29tcG9uZW50IHtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIEBJbnB1dCgpXG4gIGRpc21pc3NpYmxlOiBib29sZWFuID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgaGVhZGxpbmU6IFN0cmluZyA9ICcnO1xuXG4gIEBJbnB1dCgpXG4gIGxpdmU6IFN0cmluZyA9ICcnO1xuXG4gIEBJbnB1dCgpXG4gIHR5cGU6IFN0cmluZyA9ICcnO1xuXG4gIEBJbnB1dCgpXG4gIHNyQ2xvc2VUZXh0OiBTdHJpbmcgPSAnJztcblxuICBASW5wdXQoKVxuICBzckljb25UaXRsZTogU3RyaW5nID0gJyc7XG5cbiAgQE91dHB1dCgpXG4gIGNsb3NlZDogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG59XG4iLCI8aWRzLWFsZXJ0IFxuICBbZGlzbWlzc2libGVdPVwiZGlzbWlzc2libGVcIlxuICBbbGl2ZV09XCJsaXZlXCJcbiAgW3R5cGVdPVwidHlwZVwiXG4gIFtzcmNsb3NldGV4dF09XCJzckNsb3NlVGV4dFwiXG4gIFtzckljb25UaXRsZV09XCJzckljb25UaXRsZVwiXG4gIChjbG9zZWQpPVwiY2xvc2VkLmVtaXQodHJ1ZSlcIj5cbiAgPGgzICpuZ0lmPVwiaGVhZGxpbmVcIj5cbiAgICB7e2hlYWRsaW5lfX1cbiAgPC9oMz5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9pZHMtYWxlcnQ+Il19
@@ -1,41 +0,0 @@
1
- import { Component, HostBinding, Input, ViewEncapsulation } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class IDButtonComponent {
4
- constructor() {
5
- this.secondary = false;
6
- this.toggle = false;
7
- this.active = false;
8
- this.submit = false;
9
- this.search = false;
10
- this.disabled = false;
11
- this.type = undefined;
12
- }
13
- }
14
- IDButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
- IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", toggle: "toggle", active: "active", submit: "submit", search: "search", disabled: "disabled", type: "type" }, host: { properties: { "class.ids-btn-search": "this.search" } }, ngImport: i0, template: "<ids-button \n [secondary]=\"secondary\"\n [toggle]=\"toggle\"\n [toggle]=\"toggle\"\n [active]=\"toggle\"\n [submit]=\"submit\"\n [search]=\"search\"\n [disabled]=\"disabled\"\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-button>", encapsulation: i0.ViewEncapsulation.None });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, decorators: [{
17
- type: Component,
18
- args: [{
19
- selector: 'id-button',
20
- templateUrl: './button.component.html',
21
- encapsulation: ViewEncapsulation.None,
22
- }]
23
- }], ctorParameters: function () { return []; }, propDecorators: { secondary: [{
24
- type: Input
25
- }], toggle: [{
26
- type: Input
27
- }], active: [{
28
- type: Input
29
- }], submit: [{
30
- type: Input
31
- }], search: [{
32
- type: HostBinding,
33
- args: ['class.ids-btn-search']
34
- }, {
35
- type: Input
36
- }], disabled: [{
37
- type: Input
38
- }], type: [{
39
- type: Input
40
- }] } });
41
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL3NyYy9saWIvYnV0dG9uL2J1dHRvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9zcmMvbGliL2J1dHRvbi9idXR0b24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFVLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU96RixNQUFNLE9BQU8saUJBQWlCO0lBRTVCO1FBR0EsY0FBUyxHQUFZLEtBQUssQ0FBQztRQUUzQixXQUFNLEdBQVksS0FBSyxDQUFDO1FBRXhCLFdBQU0sR0FBWSxLQUFLLENBQUM7UUFFeEIsV0FBTSxHQUFZLEtBQUssQ0FBQztRQUd4QixXQUFNLEdBQVksS0FBSyxDQUFDO1FBRXhCLGFBQVEsR0FBWSxLQUFLLENBQUM7UUFFMUIsU0FBSSxHQUF1QixTQUFTLENBQUM7SUFoQnJCLENBQUM7OytHQUZOLGlCQUFpQjttR0FBakIsaUJBQWlCLGtRQ1A5Qix5UEFVYTs0RkRIQSxpQkFBaUI7a0JBTDdCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFdBQVc7b0JBQ3JCLFdBQVcsRUFBRSx5QkFBeUI7b0JBQ3RDLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO2lCQUN0QzswRUFNQyxTQUFTO3NCQURSLEtBQUs7Z0JBR04sTUFBTTtzQkFETCxLQUFLO2dCQUdOLE1BQU07c0JBREwsS0FBSztnQkFHTixNQUFNO3NCQURMLEtBQUs7Z0JBSU4sTUFBTTtzQkFGTCxXQUFXO3VCQUFDLHNCQUFzQjs7c0JBQ2xDLEtBQUs7Z0JBR04sUUFBUTtzQkFEUCxLQUFLO2dCQUdOLElBQUk7c0JBREgsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSG9zdEJpbmRpbmcsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2lkLWJ1dHRvbicsXG4gIHRlbXBsYXRlVXJsOiAnLi9idXR0b24uY29tcG9uZW50Lmh0bWwnLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBJREJ1dHRvbkNvbXBvbmVudCB7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICBASW5wdXQoKVxuICBzZWNvbmRhcnk6IGJvb2xlYW4gPSBmYWxzZTtcbiAgQElucHV0KClcbiAgdG9nZ2xlOiBib29sZWFuID0gZmFsc2U7XG4gIEBJbnB1dCgpXG4gIGFjdGl2ZTogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKVxuICBzdWJtaXQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgQEhvc3RCaW5kaW5nKCdjbGFzcy5pZHMtYnRuLXNlYXJjaCcpXG4gIEBJbnB1dCgpXG4gIHNlYXJjaDogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKVxuICBkaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKVxuICB0eXBlOiBzdHJpbmcgfCB1bmRlZmluZWQgPSB1bmRlZmluZWQ7XG5cbn1cbiIsIjxpZHMtYnV0dG9uIFxuICBbc2Vjb25kYXJ5XT1cInNlY29uZGFyeVwiXG4gIFt0b2dnbGVdPVwidG9nZ2xlXCJcbiAgW3RvZ2dsZV09XCJ0b2dnbGVcIlxuICBbYWN0aXZlXT1cInRvZ2dsZVwiXG4gIFtzdWJtaXRdPVwic3VibWl0XCJcbiAgW3NlYXJjaF09XCJzZWFyY2hcIlxuICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICBbdHlwZV09XCJ0eXBlXCI+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvaWRzLWJ1dHRvbj4iXX0=
@@ -1,25 +0,0 @@
1
- import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
2
- import { IDCheckboxGroupComponent } from './checkbox-group.component';
3
- import '@inera/ids-core/components/form/checkbox-group/register';
4
- import '@inera/ids-core/components/form/error-message/register';
5
- import { CommonModule } from '@angular/common';
6
- import * as i0 from "@angular/core";
7
- export class IDCheckboxGroupModule {
8
- }
9
- IDCheckboxGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10
- IDCheckboxGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, declarations: [IDCheckboxGroupComponent], imports: [CommonModule], exports: [IDCheckboxGroupComponent] });
11
- IDCheckboxGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, imports: [[CommonModule]] });
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, decorators: [{
13
- type: NgModule,
14
- args: [{
15
- imports: [CommonModule],
16
- declarations: [
17
- IDCheckboxGroupComponent
18
- ],
19
- exports: [
20
- IDCheckboxGroupComponent
21
- ],
22
- schemas: [CUSTOM_ELEMENTS_SCHEMA],
23
- }]
24
- }] });
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtZ3JvdXAubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvc3JjL2xpYi9mb3JtL2NoZWNrYm94LWdyb3VwL2NoZWNrYm94LWdyb3VwLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pFLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3RFLE9BQU8seURBQXlELENBQUM7QUFDakUsT0FBTyx3REFBd0QsQ0FBQztBQUNoRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7O0FBWS9DLE1BQU0sT0FBTyxxQkFBcUI7O21IQUFyQixxQkFBcUI7b0hBQXJCLHFCQUFxQixpQkFQOUIsd0JBQXdCLGFBRmhCLFlBQVksYUFLcEIsd0JBQXdCO29IQUlmLHFCQUFxQixZQVR2QixDQUFDLFlBQVksQ0FBQzs0RkFTWixxQkFBcUI7a0JBVmpDLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUU7d0JBQ1osd0JBQXdCO3FCQUN6QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asd0JBQXdCO3FCQUN6QjtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztpQkFDbEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLCBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBJRENoZWNrYm94R3JvdXBDb21wb25lbnQgfSBmcm9tICcuL2NoZWNrYm94LWdyb3VwLmNvbXBvbmVudCc7XHJcbmltcG9ydCAnQGluZXJhL2lkcy1jb3JlL2NvbXBvbmVudHMvZm9ybS9jaGVja2JveC1ncm91cC9yZWdpc3Rlcic7XHJcbmltcG9ydCAnQGluZXJhL2lkcy1jb3JlL2NvbXBvbmVudHMvZm9ybS9lcnJvci1tZXNzYWdlL3JlZ2lzdGVyJztcclxuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBJRENoZWNrYm94R3JvdXBDb21wb25lbnRcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIElEQ2hlY2tib3hHcm91cENvbXBvbmVudFxyXG4gIF0sXHJcbiAgc2NoZW1hczogW0NVU1RPTV9FTEVNRU5UU19TQ0hFTUFdLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgSURDaGVja2JveEdyb3VwTW9kdWxlIHsgfVxyXG4iXX0=