@inera/ids-angular 1.12.3 → 1.13.1
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 +170 -19
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/classes/header/IDHeaderNavItem.js +4 -4
- package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +1 -1
- package/esm2015/lib/classes/icon/IDIconProps.js +1 -1
- package/esm2015/lib/components/alert/alert.component.js +2 -3
- package/esm2015/lib/components/alert-global/alert-global.component.js +2 -2
- package/esm2015/lib/components/badge/badge.component.js +19 -0
- package/esm2015/lib/components/badge/badge.module.js +22 -0
- package/esm2015/lib/components/button/button.component.js +5 -2
- package/esm2015/lib/components/form/input/input.component.js +6 -2
- package/esm2015/lib/components/form/input/input.module.js +5 -3
- package/esm2015/lib/components/grid/column/column.component.js +5 -2
- package/esm2015/lib/components/grid/row/row.component.js +5 -2
- package/esm2015/lib/components/header/header.component.js +2 -2
- package/esm2015/lib/components/popover/popover.component.js +28 -0
- package/esm2015/lib/components/popover/popover.module.js +22 -0
- package/esm2015/lib/components/progressbar/progressbar.component.js +22 -0
- package/esm2015/lib/components/progressbar/progressbar.module.js +22 -0
- package/esm2015/lib/components/tabs/panel/tab-panel.component.js +7 -4
- package/esm2015/public-api.js +11 -2
- package/fesm2015/inera-ids-angular.js +152 -16
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/classes/header/IDHeaderNavItem.d.ts +1 -1
- package/lib/classes/header/IDHeaderNavItemProps.d.ts +1 -1
- package/lib/classes/icon/IDIconProps.d.ts +1 -1
- package/lib/components/badge/badge.component.d.ts +7 -0
- package/lib/components/badge/badge.module.d.ts +8 -0
- package/lib/components/button/button.component.d.ts +2 -1
- package/lib/components/form/input/input.component.d.ts +3 -1
- package/lib/components/form/input/input.module.d.ts +2 -1
- package/lib/components/grid/column/column.component.d.ts +2 -1
- package/lib/components/grid/row/row.component.d.ts +2 -1
- package/lib/components/popover/popover.component.d.ts +10 -0
- package/lib/components/popover/popover.module.d.ts +8 -0
- package/lib/components/progressbar/progressbar.component.d.ts +8 -0
- package/lib/components/progressbar/progressbar.module.d.ts +8 -0
- package/lib/components/tabs/panel/tab-panel.component.d.ts +2 -1
- package/package.json +2 -2
- package/public-api.d.ts +6 -0
|
@@ -9,7 +9,7 @@ export declare class IDHeaderNavItem {
|
|
|
9
9
|
get col3(): IDLink[] | undefined;
|
|
10
10
|
get headline(): string | undefined;
|
|
11
11
|
get paragraph(): string | undefined;
|
|
12
|
-
get link(): IDLink | undefined;
|
|
13
12
|
get paragraphLink(): IDLink | undefined;
|
|
13
|
+
get link(): IDLink | undefined;
|
|
14
14
|
get active(): boolean | undefined;
|
|
15
15
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class IDBadgeComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
type: 'main' | 'neutral' | 'info' | 'attention' | 'success' | 'error' | 'secondary';
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDBadgeComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDBadgeComponent, "id-badge", never, { "type": "type"; }, {}, never, ["*"]>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import '@inera/ids-core/components/badge/register';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./badge.component";
|
|
4
|
+
export declare class IDBadgeModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDBadgeModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IDBadgeModule, [typeof i1.IDBadgeComponent], never, [typeof i1.IDBadgeComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IDBadgeModule>;
|
|
8
|
+
}
|
|
@@ -13,6 +13,7 @@ export declare class IDButtonComponent {
|
|
|
13
13
|
size: 's' | 'm' | 'l';
|
|
14
14
|
disabled: boolean;
|
|
15
15
|
type: string | undefined;
|
|
16
|
+
color: string | undefined;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonComponent, "id-button", never, { "secondary": "secondary"; "tertiary": "tertiary"; "toggle": "toggle"; "block": "block"; "sBlock": "sBlock"; "mBlock": "mBlock"; "active": "active"; "submit": "submit"; "search": "search"; "size": "size"; "disabled": "disabled"; "type": "type"; }, {}, never, ["*"]>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonComponent, "id-button", never, { "secondary": "secondary"; "tertiary": "tertiary"; "toggle": "toggle"; "block": "block"; "sBlock": "sBlock"; "mBlock": "mBlock"; "active": "active"; "submit": "submit"; "search": "search"; "size": "size"; "disabled": "disabled"; "type": "type"; "color": "color"; }, {}, never, ["*"]>;
|
|
18
19
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { IDIcon } from '../../../classes/icon/IDIcon';
|
|
1
2
|
import { IDFormBase } from '../base/IDFormBase';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class IDInputComponent extends IDFormBase {
|
|
4
5
|
autofocus: boolean;
|
|
6
|
+
appendIcon: IDIcon | null;
|
|
5
7
|
constructor();
|
|
6
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDInputComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDInputComponent, "id-input", never, { "autofocus": "autofocus"; }, {}, never, ["*"]>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDInputComponent, "id-input", never, { "autofocus": "autofocus"; "appendIcon": "appendIcon"; }, {}, never, ["*"]>;
|
|
8
10
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import '@inera/ids-core/components/form/input/register';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "./input.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
4
5
|
export declare class IDInputModule {
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDInputModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IDInputModule, [typeof i1.IDInputComponent],
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IDInputModule, [typeof i1.IDInputComponent], [typeof i2.CommonModule], [typeof i1.IDInputComponent]>;
|
|
7
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<IDInputModule>;
|
|
8
9
|
}
|
|
@@ -9,8 +9,9 @@ export declare class IDColumnComponent {
|
|
|
9
9
|
s: string;
|
|
10
10
|
sOffset: string | null;
|
|
11
11
|
align: string;
|
|
12
|
+
class: string;
|
|
12
13
|
style: string | null;
|
|
13
14
|
constructor(_elementRef: ElementRef);
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDColumnComponent, never>;
|
|
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, ["*"]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDColumnComponent, "id-col", never, { "cols": "cols"; "offset": "offset"; "m": "m"; "mOffset": "mOffset"; "s": "s"; "sOffset": "sOffset"; "align": "align"; "class": "class"; "style": "style"; }, {}, never, ["*"]>;
|
|
16
17
|
}
|
|
@@ -3,9 +3,10 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class IDRowComponent {
|
|
4
4
|
private _elementRef;
|
|
5
5
|
align: string | null;
|
|
6
|
+
class: string | null;
|
|
6
7
|
justify: string | null;
|
|
7
8
|
style: string | null;
|
|
8
9
|
constructor(_elementRef: ElementRef);
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDRowComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, { "align": "align"; "justify": "justify"; "style": "style"; }, {}, never, ["*"]>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, { "align": "align"; "class": "class"; "justify": "justify"; "style": "style"; }, {}, never, ["*"]>;
|
|
11
12
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class IDPopoverComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
maxWidth: string;
|
|
5
|
+
maxHeight: string;
|
|
6
|
+
cathegory: string | undefined;
|
|
7
|
+
position: 'top' | 'top-left' | 'top-right' | 'right' | 'right-top' | 'right-bottom' | 'bottom' | 'bottom-left' | 'bottom-right' | 'left' | 'left-top' | 'left-bottom';
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDPopoverComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDPopoverComponent, "id-popover", never, { "maxWidth": "maxWidth"; "maxHeight": "maxHeight"; "cathegory": "cathegory"; "position": "position"; }, {}, never, ["*", "[popover-content]"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import '@inera/ids-core/components/popover/register';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./popover.component";
|
|
4
|
+
export declare class IDPopoverModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDPopoverModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IDPopoverModule, [typeof i1.IDPopoverComponent], never, [typeof i1.IDPopoverComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IDPopoverModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class IDProgressbarComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
value: number;
|
|
5
|
+
hidelabel: boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDProgressbarComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDProgressbarComponent, "id-progressbar", never, { "value": "value"; "hidelabel": "hidelabel"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import '@inera/ids-core/components/progressbar/register';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./progressbar.component";
|
|
4
|
+
export declare class IDProgressbarModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDProgressbarModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IDProgressbarModule, [typeof i1.IDProgressbarComponent], never, [typeof i1.IDProgressbarComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IDProgressbarModule>;
|
|
8
|
+
}
|
|
@@ -2,7 +2,8 @@ import { ElementRef } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDTabPanelComponent {
|
|
4
4
|
private elementRef;
|
|
5
|
+
'noFocus': string | undefined;
|
|
5
6
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDTabPanelComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDTabPanelComponent, "id-tab-panel", never, {}, {}, never, ["*"]>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDTabPanelComponent, "id-tab-panel", never, { "noFocus": "noFocus"; }, {}, never, ["*"]>;
|
|
8
9
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inera/ids-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "*",
|
|
6
6
|
"@angular/core": "*",
|
|
7
|
-
"@inera/ids-core": "1.
|
|
7
|
+
"@inera/ids-core": "1.13.x"
|
|
8
8
|
},
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
package/public-api.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ export * from './lib/components/alert-global/alert-global.component';
|
|
|
4
4
|
export * from './lib/components/alert-global/alert-global.module';
|
|
5
5
|
export * from './lib/components/agent/agent.component';
|
|
6
6
|
export * from './lib/components/agent/agent.module';
|
|
7
|
+
export * from './lib/components/badge/badge.component';
|
|
8
|
+
export * from './lib/components/badge/badge.module';
|
|
7
9
|
export * from './lib/components/button/button.component';
|
|
8
10
|
export * from './lib/components/button/button.module';
|
|
9
11
|
export * from './lib/components/button-group/button-group.component';
|
|
@@ -72,6 +74,10 @@ export * from './lib/components/mobile/menu/mobile-menu.component';
|
|
|
72
74
|
export * from './lib/components/mobile/menu/mobile-menu.module';
|
|
73
75
|
export * from './lib/classes/mobile/MobileMenuItem';
|
|
74
76
|
export * from './lib/classes/mobile/MobileMenuItemProps';
|
|
77
|
+
export * from './lib/components/popover/popover.component';
|
|
78
|
+
export * from './lib/components/popover/popover.module';
|
|
79
|
+
export * from './lib/components/progressbar/progressbar.component';
|
|
80
|
+
export * from './lib/components/progressbar/progressbar.module';
|
|
75
81
|
export * from './lib/components/footer/footer.component';
|
|
76
82
|
export * from './lib/components/footer/footer.module';
|
|
77
83
|
export * from './lib/components/header/header.component';
|