@inera/ids-angular 1.11.1 → 1.11.3
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.
- package/bundles/inera-ids-angular.umd.js +4 -1
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/components/agent/agent.component.js +1 -1
- package/esm2015/lib/components/alert/alert.component.js +1 -1
- package/esm2015/lib/components/alert-global/alert-global.component.js +1 -1
- package/esm2015/lib/components/footer/footer.component.js +1 -1
- package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +1 -1
- package/esm2015/lib/components/form/spinner/spinner.component.js +1 -1
- package/esm2015/lib/components/grid/column/column.component.js +1 -1
- package/esm2015/lib/components/header/header.component.js +5 -2
- package/esm2015/lib/components/icon/icon.component.js +1 -1
- package/esm2015/lib/components/link/link.component.js +1 -1
- package/esm2015/lib/components/tabs/tab/tab.component.js +1 -1
- package/fesm2015/inera-ids-angular.js +4 -1
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/components/agent/agent.component.d.ts +3 -3
- package/lib/components/alert/alert.component.d.ts +5 -5
- package/lib/components/alert-global/alert-global.component.d.ts +3 -3
- package/lib/components/footer/footer.component.d.ts +4 -4
- package/lib/components/form/select-multiple/select-multiple.component.d.ts +3 -3
- package/lib/components/form/spinner/spinner.component.d.ts +2 -2
- package/lib/components/grid/column/column.component.d.ts +8 -8
- package/lib/components/header/header.component.d.ts +9 -8
- package/lib/components/icon/icon.component.d.ts +7 -7
- package/lib/components/link/link.component.d.ts +2 -2
- package/lib/components/tabs/tab/tab.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3,9 +3,9 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class IDAgentComponent {
|
|
4
4
|
constructor();
|
|
5
5
|
expanded: boolean;
|
|
6
|
-
headline:
|
|
7
|
-
showText:
|
|
8
|
-
hideText:
|
|
6
|
+
headline: string;
|
|
7
|
+
showText: string;
|
|
8
|
+
hideText: string;
|
|
9
9
|
didToggleExpansion: EventEmitter<boolean>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDAgentComponent, never>;
|
|
11
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<IDAgentComponent, "id-agent", never, { "expanded": "expanded"; "headline": "headline"; "showText": "showText"; "hideText": "hideText"; }, { "didToggleExpansion": "didToggleExpansion"; }, never, ["*"]>;
|
|
@@ -3,11 +3,11 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class IDAlertComponent {
|
|
4
4
|
constructor();
|
|
5
5
|
dismissible: boolean;
|
|
6
|
-
headline:
|
|
7
|
-
live:
|
|
8
|
-
type:
|
|
9
|
-
srCloseText:
|
|
10
|
-
srIconTitle:
|
|
6
|
+
headline: string;
|
|
7
|
+
live: string;
|
|
8
|
+
type: string;
|
|
9
|
+
srCloseText: string;
|
|
10
|
+
srIconTitle: string;
|
|
11
11
|
closed: EventEmitter<boolean>;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDAlertComponent, never>;
|
|
13
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertComponent, "id-alert", never, { "dismissible": "dismissible"; "headline": "headline"; "live": "live"; "type": "type"; "srCloseText": "srCloseText"; "srIconTitle": "srIconTitle"; }, { "closed": "closed"; }, never, ["*"]>;
|
|
@@ -3,9 +3,9 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class IDAlertGlobalComponent {
|
|
4
4
|
constructor();
|
|
5
5
|
expanded: boolean;
|
|
6
|
-
headline:
|
|
7
|
-
showText:
|
|
8
|
-
hideText:
|
|
6
|
+
headline: string;
|
|
7
|
+
showText: string;
|
|
8
|
+
hideText: string;
|
|
9
9
|
didToggleExpansion: EventEmitter<boolean>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDAlertGlobalComponent, never>;
|
|
11
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertGlobalComponent, "id-alert-global", never, { "expanded": "expanded"; "headline": "headline"; "showText": "showText"; "hideText": "hideText"; }, { "didToggleExpansion": "didToggleExpansion"; }, never, ["*"]>;
|
|
@@ -2,10 +2,10 @@ import { IDMobileMenuItem } from '../../classes/mobile/MobileMenuItem';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDFooterComponent {
|
|
4
4
|
constructor();
|
|
5
|
-
type:
|
|
6
|
-
headline:
|
|
7
|
-
servicename:
|
|
8
|
-
subheadline:
|
|
5
|
+
type: string;
|
|
6
|
+
headline: string;
|
|
7
|
+
servicename: string;
|
|
8
|
+
subheadline: string;
|
|
9
9
|
mobileMenuItems: IDMobileMenuItem[] | undefined;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDFooterComponent, never>;
|
|
11
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<IDFooterComponent, "id-footer", never, { "type": "type"; "headline": "headline"; "servicename": "servicename"; "subheadline": "subheadline"; "mobileMenuItems": "mobileMenuItems"; }, {}, never, ["*"]>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { IDFormBase } from '../base/IDFormBase';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDSelectMultipleComponent extends IDFormBase {
|
|
4
|
-
label:
|
|
5
|
-
errorMessage:
|
|
6
|
-
placeholder:
|
|
4
|
+
label: string | undefined;
|
|
5
|
+
errorMessage: string | undefined;
|
|
6
|
+
placeholder: string;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectMultipleComponent, never>;
|
|
8
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "errorMessage": "errorMessage"; "placeholder": "placeholder"; }, {}, never, ["*"]>;
|
|
9
9
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDSpinnerComponent {
|
|
3
|
-
srtext:
|
|
4
|
-
live:
|
|
3
|
+
srtext: string | undefined;
|
|
4
|
+
live: string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDSpinnerComponent, never>;
|
|
6
6
|
static ɵcmp: i0.ɵɵComponentDeclaration<IDSpinnerComponent, "id-spinner", never, { "srtext": "srtext"; "live": "live"; }, {}, never, ["*"]>;
|
|
7
7
|
}
|
|
@@ -2,14 +2,14 @@ import { ElementRef } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDColumnComponent {
|
|
4
4
|
private _elementRef;
|
|
5
|
-
cols:
|
|
6
|
-
offset:
|
|
7
|
-
m:
|
|
8
|
-
mOffset:
|
|
9
|
-
s:
|
|
10
|
-
sOffset:
|
|
11
|
-
align:
|
|
12
|
-
style:
|
|
5
|
+
cols: string;
|
|
6
|
+
offset: string | null;
|
|
7
|
+
m: string;
|
|
8
|
+
mOffset: string | null;
|
|
9
|
+
s: string;
|
|
10
|
+
sOffset: string | null;
|
|
11
|
+
align: string;
|
|
12
|
+
style: string | null;
|
|
13
13
|
constructor(_elementRef: ElementRef);
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDColumnComponent, never>;
|
|
15
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<IDColumnComponent, "id-col", never, { "cols": "cols"; "offset": "offset"; "m": "m"; "mOffset": "mOffset"; "s": "s"; "sOffset": "sOffset"; "align": "align"; "style": "style"; }, {}, never, ["*"]>;
|
|
@@ -6,16 +6,17 @@ import { IDMobileMenuItem } from '../../classes/mobile/MobileMenuItem';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class IDHeaderComponent {
|
|
8
8
|
constructor();
|
|
9
|
-
type:
|
|
10
|
-
brandText:
|
|
11
|
-
brandTextTop:
|
|
12
|
-
brandTextBottom:
|
|
9
|
+
type: string;
|
|
10
|
+
brandText: string;
|
|
11
|
+
brandTextTop: string;
|
|
12
|
+
brandTextBottom: string;
|
|
13
|
+
mobileMenuText: string;
|
|
13
14
|
hideRegionPicker: boolean;
|
|
14
15
|
unresponsive: boolean;
|
|
15
16
|
hideBrand: boolean;
|
|
16
|
-
pickRegionText:
|
|
17
|
-
regionIcon:
|
|
18
|
-
srLogoLabel:
|
|
17
|
+
pickRegionText: string;
|
|
18
|
+
regionIcon: string | undefined;
|
|
19
|
+
srLogoLabel: string;
|
|
19
20
|
items: IDHeaderItem[] | undefined;
|
|
20
21
|
avatar: IDHeaderAvatar | undefined;
|
|
21
22
|
navItems: IDHeaderNavItem[] | undefined;
|
|
@@ -23,5 +24,5 @@ export declare class IDHeaderComponent {
|
|
|
23
24
|
mobileMenuItems: IDMobileMenuItem[] | undefined;
|
|
24
25
|
didToggleRegion: EventEmitter<boolean>;
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDHeaderComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDHeaderComponent, "id-header", never, { "type": "type"; "brandText": "brandText"; "brandTextTop": "brandTextTop"; "brandTextBottom": "brandTextBottom"; "hideRegionPicker": "hideRegionPicker"; "unresponsive": "unresponsive"; "hideBrand": "hideBrand"; "pickRegionText": "pickRegionText"; "regionIcon": "regionIcon"; "srLogoLabel": "srLogoLabel"; "items": "items"; "avatar": "avatar"; "navItems": "navItems"; "mobileItems": "mobileItems"; "mobileMenuItems": "mobileMenuItems"; }, { "didToggleRegion": "didToggleRegion"; }, never, ["[avatar]", "*", "[avatarMobile]"]>;
|
|
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"; "mobileItems": "mobileItems"; "mobileMenuItems": "mobileMenuItems"; }, { "didToggleRegion": "didToggleRegion"; }, never, ["[avatar]", "*", "[avatarMobile]"]>;
|
|
27
28
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDIconComponent {
|
|
3
3
|
constructor();
|
|
4
|
-
name:
|
|
5
|
-
color:
|
|
6
|
-
color2:
|
|
7
|
-
colorpreset:
|
|
8
|
-
title:
|
|
4
|
+
name: string | undefined;
|
|
5
|
+
color: string | undefined;
|
|
6
|
+
color2: string | undefined;
|
|
7
|
+
colorpreset: string | undefined;
|
|
8
|
+
title: string | undefined;
|
|
9
9
|
size: 'm' | 's' | 'xs';
|
|
10
|
-
width:
|
|
11
|
-
height:
|
|
10
|
+
width: string | undefined;
|
|
11
|
+
height: string | undefined;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDIconComponent, never>;
|
|
13
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
|
}
|
|
@@ -12,8 +12,8 @@ export declare class IDLinkComponent {
|
|
|
12
12
|
padding: string | null;
|
|
13
13
|
outline: string | null;
|
|
14
14
|
block: Boolean;
|
|
15
|
-
color:
|
|
16
|
-
size:
|
|
15
|
+
color: string | undefined;
|
|
16
|
+
size: string | undefined;
|
|
17
17
|
activeicon: Boolean;
|
|
18
18
|
external: Boolean;
|
|
19
19
|
slot: string | undefined;
|
|
@@ -2,8 +2,8 @@ import { ElementRef } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDTabComponent {
|
|
4
4
|
private elementRef;
|
|
5
|
-
label:
|
|
6
|
-
icon:
|
|
5
|
+
label: string;
|
|
6
|
+
icon: string;
|
|
7
7
|
selected: Boolean;
|
|
8
8
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDTabComponent, never>;
|