@inera/ids-angular 1.0.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/README.md +2 -23
  2. package/bundles/inera-ids-angular.umd.js +1387 -25
  3. package/bundles/inera-ids-angular.umd.js.map +1 -1
  4. package/esm2015/lib/classes/header/IDHeaderAvatar.js +18 -0
  5. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +2 -0
  6. package/esm2015/lib/classes/header/IDHeaderItem.js +15 -0
  7. package/esm2015/lib/classes/header/IDHeaderItemProps.js +2 -0
  8. package/esm2015/lib/classes/header/IDHeaderNavItem.js +30 -0
  9. package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +2 -0
  10. package/esm2015/lib/classes/icon/IDIcon.js +33 -0
  11. package/esm2015/lib/classes/icon/IDIconProps.js +2 -0
  12. package/esm2015/lib/classes/link/IDLink.js +26 -0
  13. package/esm2015/lib/classes/link/IDLinkFunction.js +17 -0
  14. package/esm2015/lib/classes/link/IDLinkRoute.js +30 -0
  15. package/esm2015/lib/classes/link/IDLinkWeb.js +24 -0
  16. package/esm2015/lib/classes/mobile/MobileMenuItem.js +35 -0
  17. package/esm2015/lib/classes/mobile/MobileMenuItemProps.js +2 -0
  18. package/esm2015/lib/classes/notification-badge.js +17 -0
  19. package/esm2015/lib/components/alert/alert.component.js +39 -0
  20. package/esm2015/lib/components/alert/alert.module.js +24 -0
  21. package/esm2015/lib/components/alert-global/alert-global.component.js +33 -0
  22. package/esm2015/lib/components/alert-global/alert-global.module.js +24 -0
  23. package/esm2015/lib/components/button/button.component.js +41 -0
  24. package/esm2015/lib/{button → components/button}/button.module.js +1 -1
  25. package/esm2015/lib/{button-group → components/button-group}/button-group.component.js +1 -1
  26. package/esm2015/lib/{button-group → components/button-group}/button-group.module.js +1 -1
  27. package/esm2015/lib/components/footer/footer.component.js +33 -0
  28. package/esm2015/lib/components/footer/footer.module.js +25 -0
  29. package/esm2015/lib/{form → components/form}/checkbox/checkbox.component.js +1 -1
  30. package/esm2015/lib/{form → components/form}/checkbox/checkbox.module.js +1 -1
  31. package/esm2015/lib/{form → components/form}/checkbox-group/checkbox-group.component.js +1 -1
  32. package/esm2015/lib/components/form/checkbox-group/checkbox-group.module.js +25 -0
  33. package/esm2015/lib/components/form/error-message/error-message.component.js +21 -0
  34. package/esm2015/lib/{form → components/form}/error-message/error-message.module.js +1 -1
  35. package/esm2015/lib/{form → components/form}/input/input.component.js +1 -1
  36. package/esm2015/lib/{form → components/form}/input/input.module.js +1 -1
  37. package/esm2015/lib/components/form/radio/radio-group.component.js +30 -0
  38. package/esm2015/lib/components/form/radio/radio.component.js +16 -0
  39. package/esm2015/lib/components/form/radio/radio.module.js +33 -0
  40. package/esm2015/lib/{form → components/form}/range/range.component.js +1 -1
  41. package/esm2015/lib/{form → components/form}/range/range.module.js +1 -1
  42. package/esm2015/lib/{form → components/form}/select/select.component.js +1 -1
  43. package/esm2015/lib/{form → components/form}/select/select.module.js +1 -1
  44. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +27 -0
  45. package/esm2015/lib/{form → components/form}/select-multiple/select-multiple.module.js +1 -1
  46. package/esm2015/lib/components/form/spinner/spinner.component.js +23 -0
  47. package/esm2015/lib/{form → components/form}/spinner/spinner.module.js +1 -1
  48. package/esm2015/lib/{form → components/form}/textarea/textarea.component.js +1 -1
  49. package/esm2015/lib/{form → components/form}/textarea/textarea.module.js +1 -1
  50. package/esm2015/lib/{form → components/form}/time/time.component.js +1 -1
  51. package/esm2015/lib/{form → components/form}/time/time.module.js +1 -1
  52. package/esm2015/lib/components/grid/column/column.component.js +27 -0
  53. package/esm2015/lib/{grid → components/grid}/column/column.module.js +1 -1
  54. package/esm2015/lib/components/grid/container/container.component.js +20 -0
  55. package/esm2015/lib/components/grid/container/container.module.js +22 -0
  56. package/esm2015/lib/{grid → components/grid}/row/row.component.js +1 -1
  57. package/esm2015/lib/{grid → components/grid}/row/row.module.js +1 -1
  58. package/esm2015/lib/components/header/header.component.js +50 -0
  59. package/esm2015/lib/components/header/header.module.js +25 -0
  60. package/esm2015/lib/components/icon/icon.component.js +41 -0
  61. package/esm2015/lib/{icon → components/icon}/icon.module.js +1 -1
  62. package/esm2015/lib/components/link/link.component.js +58 -0
  63. package/esm2015/lib/components/link/link.module.js +26 -0
  64. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +27 -0
  65. package/esm2015/lib/components/mobile/menu/mobile-menu.module.js +25 -0
  66. package/esm2015/lib/components/notification/badge/notification-badge.component.js +23 -0
  67. package/esm2015/lib/components/notification/badge/notification-badge.module.js +22 -0
  68. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +18 -0
  69. package/esm2015/lib/components/tabs/tab/tab.component.js +27 -0
  70. package/esm2015/lib/components/tabs/tabs.component.js +15 -0
  71. package/esm2015/lib/components/tabs/tabs.module.js +35 -0
  72. package/esm2015/lib/internals/anchor.component.js +75 -0
  73. package/esm2015/lib/internals/anchor.module.js +26 -0
  74. package/esm2015/public-api.js +80 -36
  75. package/fesm2015/inera-ids-angular.js +800 -15
  76. package/fesm2015/inera-ids-angular.js.map +1 -1
  77. package/lib/classes/header/IDHeaderAvatar.d.ts +10 -0
  78. package/lib/classes/header/IDHeaderAvatarProps.d.ts +7 -0
  79. package/lib/classes/header/IDHeaderItem.d.ts +8 -0
  80. package/lib/classes/header/IDHeaderItemProps.d.ts +6 -0
  81. package/lib/classes/header/IDHeaderNavItem.d.ts +13 -0
  82. package/lib/classes/header/IDHeaderNavItemProps.d.ts +11 -0
  83. package/lib/classes/icon/IDIcon.d.ts +14 -0
  84. package/lib/classes/icon/IDIconProps.d.ts +11 -0
  85. package/lib/classes/link/IDLink.d.ts +13 -0
  86. package/lib/classes/link/IDLinkFunction.d.ts +8 -0
  87. package/lib/classes/link/IDLinkRoute.d.ts +13 -0
  88. package/lib/classes/link/IDLinkWeb.d.ts +11 -0
  89. package/lib/classes/mobile/MobileMenuItem.d.ts +14 -0
  90. package/lib/classes/mobile/MobileMenuItemProps.d.ts +11 -0
  91. package/lib/classes/notification-badge.d.ts +9 -0
  92. package/lib/{alert → components/alert}/alert.component.d.ts +3 -1
  93. package/lib/{alert → components/alert}/alert.module.d.ts +2 -1
  94. package/lib/components/alert-global/alert-global.component.d.ts +12 -0
  95. package/lib/components/alert-global/alert-global.module.d.ts +9 -0
  96. package/lib/{button → components/button}/button.component.d.ts +0 -0
  97. package/lib/{button → components/button}/button.module.d.ts +0 -0
  98. package/lib/{button-group → components/button-group}/button-group.component.d.ts +0 -0
  99. package/lib/{button-group → components/button-group}/button-group.module.d.ts +0 -0
  100. package/lib/components/footer/footer.component.d.ts +12 -0
  101. package/lib/components/footer/footer.module.d.ts +10 -0
  102. package/lib/{form → components/form}/checkbox/checkbox.component.d.ts +0 -0
  103. package/lib/{form → components/form}/checkbox/checkbox.module.d.ts +0 -0
  104. package/lib/{form → components/form}/checkbox-group/checkbox-group.component.d.ts +0 -0
  105. package/lib/{form → components/form}/checkbox-group/checkbox-group.module.d.ts +0 -0
  106. package/lib/{form → components/form}/error-message/error-message.component.d.ts +0 -0
  107. package/lib/{form → components/form}/error-message/error-message.module.d.ts +0 -0
  108. package/lib/{form → components/form}/input/input.component.d.ts +0 -0
  109. package/lib/{form → components/form}/input/input.module.d.ts +0 -0
  110. package/lib/{form → components/form}/radio/radio-group.component.d.ts +0 -0
  111. package/lib/{form → components/form}/radio/radio.component.d.ts +1 -3
  112. package/lib/{form → components/form}/radio/radio.module.d.ts +0 -0
  113. package/lib/{form → components/form}/range/range.component.d.ts +0 -0
  114. package/lib/{form → components/form}/range/range.module.d.ts +0 -0
  115. package/lib/{form → components/form}/select/select.component.d.ts +0 -0
  116. package/lib/{form → components/form}/select/select.module.d.ts +0 -0
  117. package/lib/{form → components/form}/select-multiple/select-multiple.component.d.ts +0 -0
  118. package/lib/{form → components/form}/select-multiple/select-multiple.module.d.ts +0 -0
  119. package/lib/{form → components/form}/spinner/spinner.component.d.ts +0 -0
  120. package/lib/{form → components/form}/spinner/spinner.module.d.ts +0 -0
  121. package/lib/{form → components/form}/textarea/textarea.component.d.ts +0 -0
  122. package/lib/{form → components/form}/textarea/textarea.module.d.ts +0 -0
  123. package/lib/{form → components/form}/time/time.component.d.ts +0 -0
  124. package/lib/{form → components/form}/time/time.module.d.ts +0 -0
  125. package/lib/{grid → components/grid}/column/column.component.d.ts +0 -0
  126. package/lib/{grid → components/grid}/column/column.module.d.ts +0 -0
  127. package/lib/components/grid/container/container.component.d.ts +7 -0
  128. package/lib/components/grid/container/container.module.d.ts +8 -0
  129. package/lib/{grid → components/grid}/row/row.component.d.ts +0 -0
  130. package/lib/{grid → components/grid}/row/row.module.d.ts +0 -0
  131. package/lib/components/header/header.component.d.ts +20 -0
  132. package/lib/components/header/header.module.d.ts +10 -0
  133. package/lib/{icon → components/icon}/icon.component.d.ts +4 -4
  134. package/lib/{icon → components/icon}/icon.module.d.ts +0 -0
  135. package/lib/components/link/link.component.d.ts +21 -0
  136. package/lib/components/link/link.module.d.ts +11 -0
  137. package/lib/components/mobile/menu/mobile-menu.component.d.ts +10 -0
  138. package/lib/components/mobile/menu/mobile-menu.module.d.ts +10 -0
  139. package/lib/components/notification/badge/notification-badge.component.d.ts +8 -0
  140. package/lib/components/notification/badge/notification-badge.module.d.ts +8 -0
  141. package/lib/components/tabs/panel/tab-panel.component.d.ts +8 -0
  142. package/lib/components/tabs/tab/tab.component.d.ts +11 -0
  143. package/lib/components/tabs/tabs.component.d.ts +6 -0
  144. package/lib/components/tabs/tabs.module.d.ts +12 -0
  145. package/lib/internals/anchor.component.d.ts +30 -0
  146. package/lib/internals/anchor.module.d.ts +9 -0
  147. package/package.json +2 -2
  148. package/public-api.d.ts +68 -35
  149. package/esm2015/lib/alert/alert.component.js +0 -32
  150. package/esm2015/lib/alert/alert.module.js +0 -22
  151. package/esm2015/lib/button/button.component.js +0 -41
  152. package/esm2015/lib/form/checkbox-group/checkbox-group.module.js +0 -25
  153. package/esm2015/lib/form/error-message/error-message.component.js +0 -21
  154. package/esm2015/lib/form/radio/radio-group.component.js +0 -30
  155. package/esm2015/lib/form/radio/radio.component.js +0 -18
  156. package/esm2015/lib/form/radio/radio.module.js +0 -33
  157. package/esm2015/lib/form/select-multiple/select-multiple.component.js +0 -27
  158. package/esm2015/lib/form/spinner/spinner.component.js +0 -23
  159. package/esm2015/lib/grid/column/column.component.js +0 -27
  160. package/esm2015/lib/icon/icon.component.js +0 -37
@@ -1,8 +1,6 @@
1
- import { OnInit } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
- export declare class IDRadioComponent implements OnInit {
2
+ export declare class IDRadioComponent {
4
3
  constructor();
5
- ngOnInit(): void;
6
4
  static ɵfac: i0.ɵɵFactoryDeclaration<IDRadioComponent, never>;
7
5
  static ɵcmp: i0.ɵɵComponentDeclaration<IDRadioComponent, "id-radio", never, {}, {}, never, ["*"]>;
8
6
  }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDContainerComponent {
3
+ fluid: Boolean;
4
+ constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDContainerComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDContainerComponent, "id-container", never, { "fluid": "fluid"; }, {}, never, ["*"]>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/grid/container/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./container.component";
4
+ export declare class IDContainerModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDContainerModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDContainerModule, [typeof i1.IDContainerComponent], never, [typeof i1.IDContainerComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDContainerModule>;
8
+ }
@@ -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
+ }
@@ -1,14 +1,14 @@
1
- import { OnInit } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
- export declare class IDIconComponent implements OnInit {
2
+ export declare class IDIconComponent {
4
3
  constructor();
5
4
  name: String | undefined;
6
5
  color: String | undefined;
7
6
  color2: String | undefined;
7
+ colorpreset: String | undefined;
8
+ title: String | undefined;
8
9
  size: 'm' | 's' | 'xs';
9
10
  width: String | undefined;
10
11
  height: String | undefined;
11
- ngOnInit(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<IDIconComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<IDIconComponent, "id-icon", never, { "name": "name"; "color": "color"; "color2": "color2"; "size": "size"; "width": "width"; "height": "height"; }, {}, never, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDIconComponent, "id-icon", never, { "name": "name"; "color": "color"; "color2": "color2"; "colorpreset": "colorpreset"; "title": "title"; "size": "size"; "width": "width"; "height": "height"; }, {}, never, never>;
14
14
  }
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, 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,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,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDNotificationBadgeComponent {
3
+ constructor();
4
+ size: 's' | 'm' | 'lg';
5
+ type: 'muted' | 'success' | 'information' | 'cta';
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDNotificationBadgeComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "size": "size"; "type": "type"; }, {}, never, ["*"]>;
8
+ }
@@ -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.0.0",
3
+ "version": "1.4.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.2.0",
6
6
  "@angular/core": "^12.2.0",
7
- "@inera/ids-core": "^1.1.1"
7
+ "@inera/ids-core": "1.4.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"
package/public-api.d.ts CHANGED
@@ -1,35 +1,68 @@
1
- export * from './lib/alert/alert.component';
2
- export * from './lib/alert/alert.module';
3
- export * from './lib/button/button.component';
4
- export * from './lib/button/button.module';
5
- export * from './lib/button-group/button-group.component';
6
- export * from './lib/button-group/button-group.module';
7
- export * from './lib/icon/icon.component';
8
- export * from './lib/icon/icon.module';
9
- export * from './lib/form/input/input.component';
10
- export * from './lib/form/input/input.module';
11
- export * from './lib/form/checkbox/checkbox.component';
12
- export * from './lib/form/checkbox/checkbox.module';
13
- export * from './lib/form/checkbox-group/checkbox-group.component';
14
- export * from './lib/form/checkbox-group/checkbox-group.module';
15
- export * from './lib/form/error-message/error-message.component';
16
- export * from './lib/form/error-message/error-message.module';
17
- export * from './lib/form/radio/radio.component';
18
- export * from './lib/form/radio/radio-group.component';
19
- export * from './lib/form/radio/radio.module';
20
- export * from './lib/form/range/range.component';
21
- export * from './lib/form/range/range.module';
22
- export * from './lib/form/select/select.component';
23
- export * from './lib/form/select/select.module';
24
- export * from './lib/form/select-multiple/select-multiple.component';
25
- export * from './lib/form/select-multiple/select-multiple.module';
26
- export * from './lib/form/spinner/spinner.component';
27
- export * from './lib/form/spinner/spinner.module';
28
- export * from './lib/form/time/time.component';
29
- export * from './lib/form/time/time.module';
30
- export * from './lib/form/textarea/textarea.component';
31
- export * from './lib/form/textarea/textarea.module';
32
- export * from './lib/grid/row/row.component';
33
- export * from './lib/grid/row/row.module';
34
- export * from './lib/grid/column/column.component';
35
- export * from './lib/grid/column/column.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/classes/icon/IDIcon';
10
+ export * from './lib/classes/icon/IDIconProps';
11
+ export * from './lib/components/icon/icon.component';
12
+ export * from './lib/components/icon/icon.module';
13
+ export * from './lib/components/form/input/input.component';
14
+ export * from './lib/components/form/input/input.module';
15
+ export * from './lib/components/form/checkbox/checkbox.component';
16
+ export * from './lib/components/form/checkbox/checkbox.module';
17
+ export * from './lib/components/form/checkbox-group/checkbox-group.component';
18
+ export * from './lib/components/form/checkbox-group/checkbox-group.module';
19
+ export * from './lib/components/form/error-message/error-message.component';
20
+ export * from './lib/components/form/error-message/error-message.module';
21
+ export * from './lib/components/form/radio/radio.component';
22
+ export * from './lib/components/form/radio/radio-group.component';
23
+ export * from './lib/components/form/radio/radio.module';
24
+ export * from './lib/components/form/range/range.component';
25
+ export * from './lib/components/form/range/range.module';
26
+ export * from './lib/components/form/select/select.component';
27
+ export * from './lib/components/form/select/select.module';
28
+ export * from './lib/components/form/select-multiple/select-multiple.component';
29
+ export * from './lib/components/form/select-multiple/select-multiple.module';
30
+ export * from './lib/components/form/spinner/spinner.component';
31
+ export * from './lib/components/form/spinner/spinner.module';
32
+ export * from './lib/components/form/time/time.component';
33
+ export * from './lib/components/form/time/time.module';
34
+ export * from './lib/components/form/textarea/textarea.component';
35
+ export * from './lib/components/form/textarea/textarea.module';
36
+ export * from './lib/components/grid/row/row.component';
37
+ export * from './lib/components/grid/row/row.module';
38
+ export * from './lib/components/grid/column/column.component';
39
+ export * from './lib/components/grid/column/column.module';
40
+ export * from './lib/components/grid/container/container.component';
41
+ export * from './lib/components/grid/container/container.module';
42
+ export * from './lib/components/link/link.component';
43
+ export * from './lib/components/link/link.module';
44
+ export * from './lib/classes/link/IDLink';
45
+ export * from './lib/classes/link/IDLinkFunction';
46
+ export * from './lib/classes/link/IDLinkRoute';
47
+ export * from './lib/classes/link/IDLinkWeb';
48
+ export * from './lib/components/notification/badge/notification-badge.component';
49
+ export * from './lib/components/notification/badge/notification-badge.module';
50
+ export * from './lib/classes/notification-badge';
51
+ export * from './lib/components/mobile/menu/mobile-menu.component';
52
+ export * from './lib/components/mobile/menu/mobile-menu.module';
53
+ export * from './lib/classes/mobile/MobileMenuItem';
54
+ export * from './lib/classes/mobile/MobileMenuItemProps';
55
+ export * from './lib/components/footer/footer.component';
56
+ export * from './lib/components/footer/footer.module';
57
+ export * from './lib/components/header/header.component';
58
+ export * from './lib/components/header/header.module';
59
+ export * from './lib/classes/header/IDHeaderItem';
60
+ export * from './lib/classes/header/IDHeaderItemProps';
61
+ export * from './lib/classes/header/IDHeaderAvatar';
62
+ export * from './lib/classes/header/IDHeaderAvatarProps';
63
+ export * from './lib/classes/header/IDHeaderNavItem';
64
+ export * from './lib/classes/header/IDHeaderNavItemProps';
65
+ export * from './lib/components/tabs/tabs.component';
66
+ export * from './lib/components/tabs/panel/tab-panel.component';
67
+ export * from './lib/components/tabs/tab/tab.component';
68
+ export * from './lib/components/tabs/tabs.module';
@@ -1,32 +0,0 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class IDAlertComponent {
4
- constructor() {
5
- this.dismissible = false;
6
- this.headline = '';
7
- this.live = '';
8
- this.type = '';
9
- this.closed = new EventEmitter();
10
- }
11
- }
12
- IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
13
- 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" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [headline]=\"headline\"\n [live]=\"live\"\n [type]=\"type\"\n (closed)=\"closed.emit(true)\">\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"] });
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
15
- type: Component,
16
- args: [{
17
- selector: 'id-alert',
18
- templateUrl: './alert.component.html',
19
- styles: [':host { display: block; }']
20
- }]
21
- }], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
22
- type: Input
23
- }], headline: [{
24
- type: Input
25
- }], live: [{
26
- type: Input
27
- }], type: [{
28
- type: Input
29
- }], closed: [{
30
- type: Output
31
- }] } });
32
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvc3JjL2xpYi9hbGVydC9hbGVydC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9zcmMvbGliL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQXFCLE1BQU0sZUFBZSxDQUFDOztBQU9sRyxNQUFNLE9BQU8sZ0JBQWdCO0lBRTNCO1FBR0EsZ0JBQVcsR0FBWSxLQUFLLENBQUM7UUFHN0IsYUFBUSxHQUFXLEVBQUUsQ0FBQztRQUd0QixTQUFJLEdBQVcsRUFBRSxDQUFDO1FBR2xCLFNBQUksR0FBVyxFQUFFLENBQUM7UUFHbEIsV0FBTSxHQUEwQixJQUFJLFlBQVksRUFBRSxDQUFDO0lBZm5DLENBQUM7OzhHQUZOLGdCQUFnQjtrR0FBaEIsZ0JBQWdCLHlLQ1A3Qiw2TEFPWTs0RkRBQyxnQkFBZ0I7a0JBTDVCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFVBQVU7b0JBQ3BCLFdBQVcsRUFBRSx3QkFBd0I7b0JBQ3JDLE1BQU0sRUFBRSxDQUFDLDJCQUEyQixDQUFDO2lCQUN0QzswRUFNQyxXQUFXO3NCQURWLEtBQUs7Z0JBSU4sUUFBUTtzQkFEUCxLQUFLO2dCQUlOLElBQUk7c0JBREgsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUs7Z0JBSU4sTUFBTTtzQkFETCxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaWQtYWxlcnQnLFxuICB0ZW1wbGF0ZVVybDogJy4vYWxlcnQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZXM6IFsnOmhvc3QgeyBkaXNwbGF5OiBibG9jazsgfSddXG59KVxuZXhwb3J0IGNsYXNzIElEQWxlcnRDb21wb25lbnQge1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgQElucHV0KClcbiAgZGlzbWlzc2libGU6IGJvb2xlYW4gPSBmYWxzZTtcblxuICBASW5wdXQoKVxuICBoZWFkbGluZTogU3RyaW5nID0gJyc7XG5cbiAgQElucHV0KClcbiAgbGl2ZTogU3RyaW5nID0gJyc7XG5cbiAgQElucHV0KClcbiAgdHlwZTogU3RyaW5nID0gJyc7XG5cbiAgQE91dHB1dCgpXG4gIGNsb3NlZDogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG59XG4iLCI8aWRzLWFsZXJ0IFxuICBbZGlzbWlzc2libGVdPVwiZGlzbWlzc2libGVcIlxuICBbaGVhZGxpbmVdPVwiaGVhZGxpbmVcIlxuICBbbGl2ZV09XCJsaXZlXCJcbiAgW3R5cGVdPVwidHlwZVwiXG4gIChjbG9zZWQpPVwiY2xvc2VkLmVtaXQodHJ1ZSlcIj5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9pZHMtYWxlcnQ+Il19
@@ -1,22 +0,0 @@
1
- import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
2
- import { IDAlertComponent } from './alert.component';
3
- import '@inera/ids-core/components/alert/register';
4
- import * as i0 from "@angular/core";
5
- export class IDAlertModule {
6
- }
7
- IDAlertModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8
- IDAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, declarations: [IDAlertComponent], exports: [IDAlertComponent] });
9
- IDAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- declarations: [
14
- IDAlertComponent
15
- ],
16
- exports: [
17
- IDAlertComponent
18
- ],
19
- schemas: [CUSTOM_ELEMENTS_SCHEMA],
20
- }]
21
- }] });
22
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvc3JjL2xpYi9hbGVydC9hbGVydC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHNCQUFzQixFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNqRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNyRCxPQUFPLDJDQUEyQyxDQUFDOztBQVduRCxNQUFNLE9BQU8sYUFBYTs7MkdBQWIsYUFBYTs0R0FBYixhQUFhLGlCQVB0QixnQkFBZ0IsYUFHaEIsZ0JBQWdCOzRHQUlQLGFBQWE7NEZBQWIsYUFBYTtrQkFUekIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osZ0JBQWdCO3FCQUNqQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsZ0JBQWdCO3FCQUNqQjtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztpQkFDbEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLCBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSURBbGVydENvbXBvbmVudCB9IGZyb20gJy4vYWxlcnQuY29tcG9uZW50JztcbmltcG9ydCAnQGluZXJhL2lkcy1jb3JlL2NvbXBvbmVudHMvYWxlcnQvcmVnaXN0ZXInO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBJREFsZXJ0Q29tcG9uZW50XG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBJREFsZXJ0Q29tcG9uZW50XG4gIF0sXG4gIHNjaGVtYXM6IFtDVVNUT01fRUxFTUVOVFNfU0NIRU1BXSxcbn0pXG5leHBvcnQgY2xhc3MgSURBbGVydE1vZHVsZSB7IH1cbiJdfQ==
@@ -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=
@@ -1,21 +0,0 @@
1
- import { Component, ViewEncapsulation } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class IDErrorMessageComponent {
4
- constructor(viewRef) {
5
- this.viewRef = viewRef;
6
- this.viewRef.element.nativeElement.setAttribute('slot', 'error-msg');
7
- }
8
- ngOnInit() {
9
- }
10
- }
11
- IDErrorMessageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageComponent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
12
- IDErrorMessageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDErrorMessageComponent, selector: "id-error-message", ngImport: i0, template: "<ids-error-message>\r\n <ng-content></ng-content>\r\n</ids-error-message>", encapsulation: i0.ViewEncapsulation.None });
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageComponent, decorators: [{
14
- type: Component,
15
- args: [{
16
- selector: 'id-error-message',
17
- templateUrl: './error-message.component.html',
18
- encapsulation: ViewEncapsulation.None,
19
- }]
20
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItbWVzc2FnZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9zcmMvbGliL2Zvcm0vZXJyb3ItbWVzc2FnZS9lcnJvci1tZXNzYWdlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL3NyYy9saWIvZm9ybS9lcnJvci1tZXNzYWdlL2Vycm9yLW1lc3NhZ2UuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBNEIsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBT3ZGLE1BQU0sT0FBTyx1QkFBdUI7SUFFbEMsWUFBNkIsT0FBeUI7UUFBekIsWUFBTyxHQUFQLE9BQU8sQ0FBa0I7UUFDcEQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLFlBQVksQ0FBQyxNQUFNLEVBQUUsV0FBVyxDQUFDLENBQUM7SUFDdkUsQ0FBQztJQUVELFFBQVE7SUFDUixDQUFDOztxSEFQVSx1QkFBdUI7eUdBQXZCLHVCQUF1Qix3RENQcEMsNEVBRW9COzRGREtQLHVCQUF1QjtrQkFMbkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsa0JBQWtCO29CQUM1QixXQUFXLEVBQUUsZ0NBQWdDO29CQUM3QyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtpQkFDdEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCwgVmlld0NvbnRhaW5lclJlZiwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaWQtZXJyb3ItbWVzc2FnZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2Vycm9yLW1lc3NhZ2UuY29tcG9uZW50Lmh0bWwnLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBJREVycm9yTWVzc2FnZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgdmlld1JlZjogVmlld0NvbnRhaW5lclJlZikge1xyXG4gICAgdGhpcy52aWV3UmVmLmVsZW1lbnQubmF0aXZlRWxlbWVudC5zZXRBdHRyaWJ1dGUoJ3Nsb3QnLCAnZXJyb3ItbXNnJyk7XHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICB9XHJcblxyXG59XHJcbiIsIjxpZHMtZXJyb3ItbWVzc2FnZT5cclxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XHJcbjwvaWRzLWVycm9yLW1lc3NhZ2U+Il19