@inera/ids-angular 1.4.0 → 1.5.2
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 +252 -63
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/classes/header/IDHeaderAvatar.js +1 -1
- package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +1 -1
- package/esm2015/lib/classes/header/IDHeaderItem.js +1 -1
- package/esm2015/lib/classes/header/IDHeaderItemProps.js +1 -1
- package/esm2015/lib/classes/header/IDHeaderNavItem.js +1 -1
- package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +1 -1
- package/esm2015/lib/classes/icon/IDIcon.js +1 -1
- package/esm2015/lib/classes/mobile/MobileMenuItem.js +1 -1
- package/esm2015/lib/classes/mobile/MobileMenuItemProps.js +1 -1
- package/esm2015/lib/components/date-label/date-label.component.js +32 -0
- package/esm2015/lib/components/date-label/date-label.module.js +22 -0
- package/esm2015/lib/components/footer/footer.component.js +1 -1
- package/esm2015/lib/components/header/header.component.js +1 -1
- package/esm2015/lib/components/link/link.component.js +4 -2
- package/esm2015/lib/components/list/item/info/list-item-info.component.js +16 -0
- package/esm2015/lib/components/list/item/info/list-item-info.module.js +21 -0
- package/esm2015/lib/components/list/item/list-item.component.js +38 -0
- package/esm2015/lib/components/list/item/list-item.module.js +21 -0
- package/esm2015/lib/components/list/list.component.js +16 -0
- package/esm2015/lib/components/list/list.module.js +22 -0
- package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +1 -1
- package/esm2015/lib/components/notification/badge/notification-badge.component.js +2 -5
- package/esm2015/public-api.js +11 -1
- package/fesm2015/inera-ids-angular.js +227 -62
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/classes/header/IDHeaderAvatar.d.ts +1 -1
- package/lib/classes/header/IDHeaderAvatarProps.d.ts +1 -1
- package/lib/classes/header/IDHeaderItem.d.ts +2 -1
- package/lib/classes/header/IDHeaderItemProps.d.ts +1 -1
- package/lib/classes/header/IDHeaderNavItem.d.ts +2 -1
- package/lib/classes/header/IDHeaderNavItemProps.d.ts +1 -1
- package/lib/classes/icon/IDIcon.d.ts +1 -1
- package/lib/classes/mobile/MobileMenuItem.d.ts +2 -1
- package/lib/classes/mobile/MobileMenuItemProps.d.ts +2 -1
- package/lib/components/date-label/date-label.component.d.ts +11 -0
- package/lib/components/date-label/date-label.module.d.ts +8 -0
- package/lib/components/footer/footer.component.d.ts +1 -1
- package/lib/components/header/header.component.d.ts +4 -1
- package/lib/components/link/link.component.d.ts +3 -2
- package/lib/components/list/item/info/list-item-info.component.d.ts +6 -0
- package/lib/components/list/item/info/list-item-info.module.d.ts +7 -0
- package/lib/components/list/item/list-item.component.d.ts +13 -0
- package/lib/components/list/item/list-item.module.d.ts +7 -0
- package/lib/components/list/list.component.d.ts +6 -0
- package/lib/components/list/list.module.d.ts +8 -0
- package/lib/components/mobile/menu/mobile-menu.component.d.ts +1 -1
- package/lib/components/notification/badge/notification-badge.component.d.ts +1 -2
- package/package.json +2 -2
- package/public-api.d.ts +8 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { IDIcon
|
|
1
|
+
import { IDIcon } from '../../classes/icon/IDIcon';
|
|
2
|
+
import { IDLink } from '../../classes/link/IDLink';
|
|
2
3
|
import { IDNotificationBadge } from '../../classes/notification-badge';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class IDLinkComponent {
|
|
@@ -17,5 +18,5 @@ export declare class IDLinkComponent {
|
|
|
17
18
|
external: Boolean;
|
|
18
19
|
slot: string | undefined;
|
|
19
20
|
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
|
+
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
22
|
}
|
|
@@ -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,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
|
+
}
|
|
@@ -2,7 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class IDNotificationBadgeComponent {
|
|
3
3
|
constructor();
|
|
4
4
|
size: 's' | 'm' | 'lg';
|
|
5
|
-
type: 'muted' | 'success' | 'information' | 'cta';
|
|
6
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDNotificationBadgeComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "size": "size";
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "size": "size"; }, {}, never, ["*"]>;
|
|
8
7
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inera/ids-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^12.2.0",
|
|
6
6
|
"@angular/core": "^12.2.0",
|
|
7
|
-
"@inera/ids-core": "1.
|
|
7
|
+
"@inera/ids-core": "1.5.x"
|
|
8
8
|
},
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
package/public-api.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ export * from './lib/components/button/button.component';
|
|
|
6
6
|
export * from './lib/components/button/button.module';
|
|
7
7
|
export * from './lib/components/button-group/button-group.component';
|
|
8
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';
|
|
9
11
|
export * from './lib/classes/icon/IDIcon';
|
|
10
12
|
export * from './lib/classes/icon/IDIconProps';
|
|
11
13
|
export * from './lib/components/icon/icon.component';
|
|
@@ -45,6 +47,12 @@ export * from './lib/classes/link/IDLink';
|
|
|
45
47
|
export * from './lib/classes/link/IDLinkFunction';
|
|
46
48
|
export * from './lib/classes/link/IDLinkRoute';
|
|
47
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';
|
|
48
56
|
export * from './lib/components/notification/badge/notification-badge.component';
|
|
49
57
|
export * from './lib/components/notification/badge/notification-badge.module';
|
|
50
58
|
export * from './lib/classes/notification-badge';
|