@inera/ids-angular 1.11.3 → 1.12.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.
- package/bundles/inera-ids-angular.umd.js +101 -49
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/classes/link/IDLink.js +9 -11
- package/esm2015/lib/classes/link/IDLinkFunction.js +7 -7
- package/esm2015/lib/classes/link/IDLinkProp.js +2 -0
- package/esm2015/lib/classes/link/IDLinkRoute.js +10 -13
- package/esm2015/lib/classes/link/IDLinkWeb.js +8 -10
- package/esm2015/lib/components/agent/agent.component.js +2 -2
- package/esm2015/lib/components/card/card.component.js +4 -4
- package/esm2015/lib/components/expandable/expandable.component.js +29 -0
- package/esm2015/lib/components/expandable/expandable.module.js +22 -0
- package/esm2015/lib/components/footer/footer.component.js +11 -2
- package/esm2015/lib/components/icon/icon.component.js +5 -2
- package/esm2015/lib/internals/anchor.component.js +2 -2
- package/esm2015/public-api.js +5 -1
- package/fesm2015/inera-ids-angular.js +95 -44
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/classes/link/IDLink.d.ts +3 -4
- package/lib/classes/link/IDLinkFunction.d.ts +4 -4
- package/lib/classes/link/IDLinkProp.d.ts +12 -0
- package/lib/classes/link/IDLinkRoute.d.ts +4 -7
- package/lib/classes/link/IDLinkWeb.d.ts +4 -5
- package/lib/components/expandable/expandable.component.d.ts +10 -0
- package/lib/components/expandable/expandable.module.d.ts +8 -0
- package/lib/components/footer/footer.component.d.ts +4 -1
- package/lib/components/icon/icon.component.d.ts +2 -1
- package/package.json +2 -2
- package/public-api.d.ts +3 -0
|
@@ -1,8 +1,7 @@
|
|
|
1
|
+
import { IDLinkProps } from "./IDLinkProp";
|
|
1
2
|
export declare abstract class IDLink {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
private _classes?;
|
|
5
|
-
constructor(_label: string, _id?: string | undefined, _classes?: string[] | undefined);
|
|
3
|
+
protected _props: IDLinkProps;
|
|
4
|
+
constructor(_props: IDLinkProps);
|
|
6
5
|
get label(): string;
|
|
7
6
|
get id(): string | undefined;
|
|
8
7
|
get classes(): string[] | undefined;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { IDLink } from "./IDLink";
|
|
2
|
+
import { IDLinkProps } from "./IDLinkProp";
|
|
2
3
|
export declare class IDLinkFunction extends IDLink {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
set action(action: (() => any));
|
|
4
|
+
constructor(_props: IDLinkProps);
|
|
5
|
+
get action(): (() => any) | undefined;
|
|
6
|
+
set action(action: (() => any) | undefined);
|
|
7
7
|
click(): void;
|
|
8
8
|
}
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { IDLink } from "./IDLink";
|
|
2
|
-
import {
|
|
2
|
+
import { IDLinkProps } from "./IDLinkProp";
|
|
3
3
|
export declare class IDLinkRoute extends IDLink {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
constructor(_label: string, _route: string, _queries?: any, router?: Router | undefined, _id?: string, _classes?: string[]);
|
|
8
|
-
get route(): string;
|
|
9
|
-
set route(route: string);
|
|
4
|
+
constructor(_props: IDLinkProps);
|
|
5
|
+
get route(): string | undefined;
|
|
6
|
+
set route(route: string | undefined);
|
|
10
7
|
get queries(): any;
|
|
11
8
|
set queries(_queries: any);
|
|
12
9
|
click(): void;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { IDLink } from "./IDLink";
|
|
2
|
+
import { IDLinkProps } from "./IDLinkProp";
|
|
2
3
|
export declare class IDLinkWeb extends IDLink {
|
|
3
|
-
|
|
4
|
-
private _target?;
|
|
5
|
-
constructor(_label: string, _url: string, _target?: string | undefined, _id?: string, _classes?: string[]);
|
|
4
|
+
constructor(_props: IDLinkProps);
|
|
6
5
|
get target(): string | undefined;
|
|
7
6
|
set target(target: string | undefined);
|
|
8
|
-
get url(): string;
|
|
9
|
-
set url(url: string);
|
|
7
|
+
get url(): string | undefined;
|
|
8
|
+
set url(url: string | undefined);
|
|
10
9
|
click(): void;
|
|
11
10
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class IDExpandableComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
borderless: boolean;
|
|
5
|
+
expanded: boolean;
|
|
6
|
+
headline: string;
|
|
7
|
+
variation: '1' | '2';
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDExpandableComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDExpandableComponent, "id-expandable", never, { "borderless": "borderless"; "expanded": "expanded"; "headline": "headline"; "variation": "variation"; }, {}, never, ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import '@inera/ids-core/components/expandable/register';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./expandable.component";
|
|
4
|
+
export declare class IDExpandableModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDExpandableModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IDExpandableModule, [typeof i1.IDExpandableComponent], never, [typeof i1.IDExpandableComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IDExpandableModule>;
|
|
8
|
+
}
|
|
@@ -6,7 +6,10 @@ export declare class IDFooterComponent {
|
|
|
6
6
|
headline: string;
|
|
7
7
|
servicename: string;
|
|
8
8
|
subheadline: string;
|
|
9
|
+
linkcol1: string;
|
|
10
|
+
linkcol2: string;
|
|
11
|
+
linkcol3: string;
|
|
9
12
|
mobileMenuItems: IDMobileMenuItem[] | undefined;
|
|
10
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDFooterComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDFooterComponent, "id-footer", never, { "type": "type"; "headline": "headline"; "servicename": "servicename"; "subheadline": "subheadline"; "mobileMenuItems": "mobileMenuItems"; }, {}, never, ["*"]>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDFooterComponent, "id-footer", never, { "type": "type"; "headline": "headline"; "servicename": "servicename"; "subheadline": "subheadline"; "linkcol1": "linkcol1"; "linkcol2": "linkcol2"; "linkcol3": "linkcol3"; "mobileMenuItems": "mobileMenuItems"; }, {}, never, ["*"]>;
|
|
12
15
|
}
|
|
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class IDIconComponent {
|
|
3
3
|
constructor();
|
|
4
4
|
name: string | undefined;
|
|
5
|
+
rotate: string | undefined;
|
|
5
6
|
color: string | undefined;
|
|
6
7
|
color2: string | undefined;
|
|
7
8
|
colorpreset: string | undefined;
|
|
@@ -10,5 +11,5 @@ export declare class IDIconComponent {
|
|
|
10
11
|
width: string | undefined;
|
|
11
12
|
height: string | undefined;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDIconComponent, 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
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDIconComponent, "id-icon", never, { "name": "name"; "rotate": "rotate"; "color": "color"; "color2": "color2"; "colorpreset": "colorpreset"; "title": "title"; "size": "size"; "width": "width"; "height": "height"; }, {}, never, never>;
|
|
14
15
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inera/ids-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "*",
|
|
6
6
|
"@angular/core": "*",
|
|
7
|
-
"@inera/ids-core": "1.
|
|
7
|
+
"@inera/ids-core": "1.12.x"
|
|
8
8
|
},
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
package/public-api.d.ts
CHANGED
|
@@ -17,6 +17,8 @@ export * from './lib/components/date-label/date-label.module';
|
|
|
17
17
|
export * from './lib/components/dialog/dialog.component';
|
|
18
18
|
export * from './lib/components/dialog/dialog.module';
|
|
19
19
|
export * from './lib/components/dialog/actions/dialog-actions.component';
|
|
20
|
+
export * from './lib/components/expandable/expandable.component';
|
|
21
|
+
export * from './lib/components/expandable/expandable.module';
|
|
20
22
|
export * from './lib/classes/icon/IDIcon';
|
|
21
23
|
export * from './lib/classes/icon/IDIconProps';
|
|
22
24
|
export * from './lib/components/icon/icon.component';
|
|
@@ -53,6 +55,7 @@ export * from './lib/components/grid/container/container.module';
|
|
|
53
55
|
export * from './lib/components/link/link.component';
|
|
54
56
|
export * from './lib/components/link/link.module';
|
|
55
57
|
export * from './lib/classes/link/IDLink';
|
|
58
|
+
export * from './lib/classes/link/IDLinkProp';
|
|
56
59
|
export * from './lib/classes/link/IDLinkFunction';
|
|
57
60
|
export * from './lib/classes/link/IDLinkRoute';
|
|
58
61
|
export * from './lib/classes/link/IDLinkWeb';
|