@inera/ids-angular 3.0.2 → 3.0.4
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 +23 -16
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/components/agent/agent.component.js +3 -3
- package/esm2015/lib/components/alert-global/alert-global.component.js +3 -3
- package/esm2015/lib/components/breadcrumbs/breadcrumbs.component.js +1 -1
- package/esm2015/lib/components/footer/footer.component.js +1 -1
- package/esm2015/lib/components/grid/row/row.component.js +5 -2
- package/esm2015/lib/components/header/header.component.js +5 -2
- package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +1 -1
- package/esm2015/lib/components/notification/badge/notification-badge.component.js +3 -6
- package/esm2015/lib/internals/anchor.component.js +7 -3
- package/fesm2015/inera-ids-angular.js +23 -16
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/components/grid/row/row.component.d.ts +2 -1
- package/lib/components/header/header.component.d.ts +2 -1
- package/lib/components/notification/badge/notification-badge.component.d.ts +1 -2
- package/lib/internals/anchor.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -4,9 +4,10 @@ export declare class IDRowComponent {
|
|
|
4
4
|
private _elementRef;
|
|
5
5
|
align: string | null;
|
|
6
6
|
class: string | null;
|
|
7
|
+
gap: string | null;
|
|
7
8
|
justify: string | null;
|
|
8
9
|
style: string | null;
|
|
9
10
|
constructor(_elementRef: ElementRef);
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDRowComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, { "align": "align"; "class": "class"; "justify": "justify"; "style": "style"; }, {}, never, ["*"]>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, { "align": "align"; "class": "class"; "gap": "gap"; "justify": "justify"; "style": "style"; }, {}, never, ["*"]>;
|
|
12
13
|
}
|
|
@@ -24,8 +24,9 @@ export declare class IDHeaderComponent {
|
|
|
24
24
|
navitems: IDHeaderNavItem[] | undefined;
|
|
25
25
|
persistentmobilemenu: boolean;
|
|
26
26
|
mobileitems: IDHeaderItem[] | undefined;
|
|
27
|
+
mobilemenulabel: string;
|
|
27
28
|
mobilemenuitems: IDMobileMenuItem[] | undefined;
|
|
28
29
|
onDidToggleRegion: EventEmitter<boolean>;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDHeaderComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDHeaderComponent, "id-header", never, { "type": "type"; "brandtext": "brandtext"; "brandtexttop": "brandtexttop"; "brandtextbottom": "brandtextbottom"; "hideregionpicker": "hideregionpicker"; "fluid": "fluid"; "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"; }, { "onDidToggleRegion": "onDidToggleRegion"; }, never, ["[avatar]", "*", "[avatarMobile]"]>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDHeaderComponent, "id-header", never, { "type": "type"; "brandtext": "brandtext"; "brandtexttop": "brandtexttop"; "brandtextbottom": "brandtextbottom"; "hideregionpicker": "hideregionpicker"; "fluid": "fluid"; "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"; "mobilemenulabel": "mobilemenulabel"; "mobilemenuitems": "mobilemenuitems"; }, { "onDidToggleRegion": "onDidToggleRegion"; }, never, ["[avatar]", "*", "[avatarMobile]"]>;
|
|
31
32
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDNotificationBadgeComponent {
|
|
3
3
|
constructor();
|
|
4
|
-
size: 's' | 'm' | 'lg';
|
|
5
4
|
outlined: boolean;
|
|
6
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDNotificationBadgeComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDNotificationBadgeComponent, "id-notification-badge", never, { "outlined": "outlined"; }, {}, never, ["*"]>;
|
|
8
7
|
}
|
|
@@ -16,6 +16,7 @@ export declare class IDAnchorComponent {
|
|
|
16
16
|
scriptHref: import("@angular/platform-browser").SafeUrl;
|
|
17
17
|
/** LinkObject */
|
|
18
18
|
link: IDLink | undefined;
|
|
19
|
+
block: boolean;
|
|
19
20
|
noOutline: boolean;
|
|
20
21
|
/** Apply classes to <a> element */
|
|
21
22
|
contextClasses: string[];
|
|
@@ -27,5 +28,5 @@ export declare class IDAnchorComponent {
|
|
|
27
28
|
get linkFunction(): IDLinkFunction;
|
|
28
29
|
ngOnChanges(changes: SimpleChanges): void;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDAnchorComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDAnchorComponent, "id-anchor", never, { "link": "link"; "noOutline": "noOutline"; "contextClasses": "contextClasses"; }, {}, never, ["[prepend]", "[append]"]>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDAnchorComponent, "id-anchor", never, { "link": "link"; "block": "block"; "noOutline": "noOutline"; "contextClasses": "contextClasses"; }, {}, never, ["[prepend]", "[append]"]>;
|
|
31
32
|
}
|