@inera/ids-angular 2.3.0 → 2.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 (42) hide show
  1. package/bundles/inera-ids-angular.umd.js +127 -24
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/classes/header/IDHeaderAvatar.js +3 -3
  4. package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +1 -1
  5. package/esm2015/lib/classes/header/IDHeaderItem.js +4 -1
  6. package/esm2015/lib/classes/header/IDHeaderItemProps.js +1 -1
  7. package/esm2015/lib/components/alert/alert.component.js +2 -2
  8. package/esm2015/lib/components/alert-global/alert-global.component.js +5 -2
  9. package/esm2015/lib/components/button/button.component.js +3 -3
  10. package/esm2015/lib/components/carousel/carousel.component.js +2 -2
  11. package/esm2015/lib/components/dialog/dialog.component.js +2 -2
  12. package/esm2015/lib/components/form/checkbox/checkbox.component.js +2 -2
  13. package/esm2015/lib/components/form/checkbox-group/checkbox-group.component.js +2 -2
  14. package/esm2015/lib/components/form/input/input.component.js +2 -2
  15. package/esm2015/lib/components/form/select/select.component.js +2 -2
  16. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +2 -2
  17. package/esm2015/lib/components/form/textarea/textarea.component.js +2 -2
  18. package/esm2015/lib/components/grid/column/column.component.js +2 -2
  19. package/esm2015/lib/components/header/header.component.js +10 -2
  20. package/esm2015/lib/components/notification/badge/notification-badge.component.js +2 -2
  21. package/esm2015/lib/components/popover/popover.component.js +2 -2
  22. package/esm2015/lib/components/stepper/step/step.component.js +34 -0
  23. package/esm2015/lib/components/stepper/stepper.component.js +14 -0
  24. package/esm2015/lib/components/stepper/stepper.module.js +27 -0
  25. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +2 -2
  26. package/esm2015/lib/components/tabs/tab/tab.component.js +2 -2
  27. package/esm2015/lib/components/tabs/tabs.component.js +15 -5
  28. package/esm2015/public-api.js +5 -1
  29. package/fesm2015/inera-ids-angular.js +115 -24
  30. package/fesm2015/inera-ids-angular.js.map +1 -1
  31. package/lib/classes/header/IDHeaderAvatar.d.ts +1 -1
  32. package/lib/classes/header/IDHeaderAvatarProps.d.ts +1 -1
  33. package/lib/classes/header/IDHeaderItem.d.ts +1 -0
  34. package/lib/classes/header/IDHeaderItemProps.d.ts +1 -0
  35. package/lib/components/alert-global/alert-global.component.d.ts +2 -1
  36. package/lib/components/header/header.component.d.ts +4 -1
  37. package/lib/components/stepper/step/step.component.d.ts +12 -0
  38. package/lib/components/stepper/stepper.component.d.ts +5 -0
  39. package/lib/components/stepper/stepper.module.d.ts +9 -0
  40. package/lib/components/tabs/tabs.component.d.ts +4 -1
  41. package/package.json +2 -2
  42. package/public-api.d.ts +3 -0
@@ -6,6 +6,6 @@ export declare class IDHeaderAvatar {
6
6
  get username(): string | undefined;
7
7
  get linkLeft(): IDLink | undefined;
8
8
  get linkRight(): IDLink | undefined;
9
- get serviceName(): string | undefined;
9
+ get unit(): string | undefined;
10
10
  get linkMobile(): IDLink | undefined;
11
11
  }
@@ -4,5 +4,5 @@ export interface IDHeaderAvatarProps {
4
4
  linkLeft?: IDLink;
5
5
  linkRight?: IDLink;
6
6
  linkMobile?: IDLink;
7
- serviceName?: string;
7
+ unit?: string;
8
8
  }
@@ -6,4 +6,5 @@ export declare class IDHeaderItem {
6
6
  get iconName(): string | undefined;
7
7
  get link(): IDLink | undefined;
8
8
  get mobile(): boolean | undefined;
9
+ get separatorLeft(): boolean | undefined;
9
10
  }
@@ -3,4 +3,5 @@ export interface IDHeaderItemProps {
3
3
  iconName?: string;
4
4
  link?: IDLink;
5
5
  mobile?: boolean;
6
+ separatorLeft?: boolean;
6
7
  }
@@ -4,9 +4,10 @@ export declare class IDAlertGlobalComponent {
4
4
  constructor();
5
5
  expanded: boolean;
6
6
  headline: string;
7
+ hideMobileIcon: string;
7
8
  showText: string;
8
9
  hideText: string;
9
10
  didToggleExpansion: EventEmitter<boolean>;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<IDAlertGlobalComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertGlobalComponent, "id-alert-global", never, { "expanded": "expanded"; "headline": "headline"; "showText": "showText"; "hideText": "hideText"; }, { "didToggleExpansion": "didToggleExpansion"; }, never, ["*"]>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertGlobalComponent, "id-alert-global", never, { "expanded": "expanded"; "headline": "headline"; "hideMobileIcon": "hideMobileIcon"; "showText": "showText"; "hideText": "hideText"; }, { "didToggleExpansion": "didToggleExpansion"; }, never, ["*"]>;
12
13
  }
@@ -13,16 +13,19 @@ export declare class IDHeaderComponent {
13
13
  hideRegionPicker: boolean;
14
14
  unresponsive: boolean;
15
15
  hideBrand: boolean;
16
+ logoHref: string;
16
17
  pickRegionText: string;
17
18
  regionIcon: string | undefined;
19
+ regionIconTitle: string | undefined;
18
20
  srLogoLabel: string;
19
21
  items: IDHeaderItem[] | undefined;
20
22
  avatar: IDHeaderAvatar | undefined;
23
+ avatarMaxWidth: string;
21
24
  navItems: IDHeaderNavItem[] | undefined;
22
25
  persistentMobileMenu: boolean;
23
26
  mobileItems: IDHeaderItem[] | undefined;
24
27
  mobileMenuItems: IDMobileMenuItem[] | undefined;
25
28
  didToggleRegion: EventEmitter<boolean>;
26
29
  static ɵfac: i0.ɵɵFactoryDeclaration<IDHeaderComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<IDHeaderComponent, "id-header", never, { "type": "type"; "brandText": "brandText"; "brandTextTop": "brandTextTop"; "brandTextBottom": "brandTextBottom"; "mobileMenuText": "mobileMenuText"; "hideRegionPicker": "hideRegionPicker"; "unresponsive": "unresponsive"; "hideBrand": "hideBrand"; "pickRegionText": "pickRegionText"; "regionIcon": "regionIcon"; "srLogoLabel": "srLogoLabel"; "items": "items"; "avatar": "avatar"; "navItems": "navItems"; "persistentMobileMenu": "persistentMobileMenu"; "mobileItems": "mobileItems"; "mobileMenuItems": "mobileMenuItems"; }, { "didToggleRegion": "didToggleRegion"; }, never, ["[avatar]", "*", "[avatarMobile]"]>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDHeaderComponent, "id-header", never, { "type": "type"; "brandText": "brandText"; "brandTextTop": "brandTextTop"; "brandTextBottom": "brandTextBottom"; "mobileMenuText": "mobileMenuText"; "hideRegionPicker": "hideRegionPicker"; "unresponsive": "unresponsive"; "hideBrand": "hideBrand"; "logoHref": "logoHref"; "pickRegionText": "pickRegionText"; "regionIcon": "regionIcon"; "regionIconTitle": "regionIconTitle"; "srLogoLabel": "srLogoLabel"; "items": "items"; "avatar": "avatar"; "avatarMaxWidth": "avatarMaxWidth"; "navItems": "navItems"; "persistentMobileMenu": "persistentMobileMenu"; "mobileItems": "mobileItems"; "mobileMenuItems": "mobileMenuItems"; }, { "didToggleRegion": "didToggleRegion"; }, never, ["[avatar]", "*", "[avatarMobile]"]>;
28
31
  }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDStepComponent {
3
+ constructor();
4
+ state: '' | 'valid' | 'invalid' | 'selected';
5
+ headline: string;
6
+ srindicatortext: string;
7
+ label: string;
8
+ expanded: boolean;
9
+ disabled: boolean;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDStepComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDStepComponent, "id-step", never, { "state": "state"; "headline": "headline"; "srindicatortext": "srindicatortext"; "label": "label"; "expanded": "expanded"; "disabled": "disabled"; }, {}, never, ["*"]>;
12
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDStepperComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDStepperComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDStepperComponent, "id-stepper", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,9 @@
1
+ import '@inera/ids-core/components/stepper/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./step/step.component";
4
+ import * as i2 from "./stepper.component";
5
+ export declare class IDStepperModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDStepperModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDStepperModule, [typeof i1.IDStepComponent, typeof i2.IDStepperComponent], never, [typeof i1.IDStepComponent, typeof i2.IDStepperComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDStepperModule>;
9
+ }
@@ -1,6 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class IDTabsComponent {
3
+ responsive: 'm' | 's';
4
+ unresponsive: boolean;
5
+ selectLabel: string;
3
6
  constructor();
4
7
  static ɵfac: i0.ɵɵFactoryDeclaration<IDTabsComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<IDTabsComponent, "id-tabs", never, {}, {}, never, ["*"]>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTabsComponent, "id-tabs", never, { "responsive": "responsive"; "unresponsive": "unresponsive"; "selectLabel": "selectLabel"; }, {}, never, ["*"]>;
6
9
  }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@inera/ids-angular",
3
- "version": "2.3.0",
3
+ "version": "2.5.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "*",
6
6
  "@angular/core": "*",
7
- "@inera/ids-core": "2.3.x"
7
+ "@inera/ids-core": "2.5.x"
8
8
  },
9
9
  "publishConfig": {
10
10
  "access": "public"
package/public-api.d.ts CHANGED
@@ -93,6 +93,9 @@ export * from './lib/classes/header/IDHeaderAvatar';
93
93
  export * from './lib/classes/header/IDHeaderAvatarProps';
94
94
  export * from './lib/classes/header/IDHeaderNavItem';
95
95
  export * from './lib/classes/header/IDHeaderNavItemProps';
96
+ export * from './lib/components/stepper/stepper.component';
97
+ export * from './lib/components/stepper/step/step.component';
98
+ export * from './lib/components/stepper/stepper.module';
96
99
  export * from './lib/components/tabs/tabs.component';
97
100
  export * from './lib/components/tabs/panel/tab-panel.component';
98
101
  export * from './lib/components/tabs/tab/tab.component';