@inera/ids-angular 2.1.2 → 2.2.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 +24 -5
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/components/alert/alert.component.js +11 -2
- package/esm2015/lib/components/button/button.component.js +8 -2
- package/esm2015/lib/components/form/textarea/textarea.component.js +7 -4
- package/fesm2015/inera-ids-angular.js +22 -4
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/components/alert/alert.component.d.ts +4 -1
- package/lib/components/button/button.component.d.ts +3 -1
- package/lib/components/form/textarea/textarea.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3,6 +3,9 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class IDAlertComponent {
|
|
4
4
|
constructor();
|
|
5
5
|
dismissible: boolean;
|
|
6
|
+
collapsable: boolean;
|
|
7
|
+
srCollapseText: string | undefined;
|
|
8
|
+
srExpandText: string | undefined;
|
|
6
9
|
headline: string;
|
|
7
10
|
live: string;
|
|
8
11
|
type: string;
|
|
@@ -10,5 +13,5 @@ export declare class IDAlertComponent {
|
|
|
10
13
|
srIconTitle: string;
|
|
11
14
|
closed: EventEmitter<boolean>;
|
|
12
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDAlertComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertComponent, "id-alert", never, { "dismissible": "dismissible"; "headline": "headline"; "live": "live"; "type": "type"; "srCloseText": "srCloseText"; "srIconTitle": "srIconTitle"; }, { "closed": "closed"; }, never, ["*"]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertComponent, "id-alert", never, { "dismissible": "dismissible"; "collapsable": "collapsable"; "srCollapseText": "srCollapseText"; "srExpandText": "srExpandText"; "headline": "headline"; "live": "live"; "type": "type"; "srCloseText": "srCloseText"; "srIconTitle": "srIconTitle"; }, { "closed": "closed"; }, never, ["*"]>;
|
|
14
17
|
}
|
|
@@ -3,6 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class IDButtonComponent {
|
|
4
4
|
constructor();
|
|
5
5
|
secondary: boolean;
|
|
6
|
+
fab: boolean;
|
|
7
|
+
icon: boolean;
|
|
6
8
|
tertiary: boolean;
|
|
7
9
|
toggle: boolean;
|
|
8
10
|
block: boolean;
|
|
@@ -17,5 +19,5 @@ export declare class IDButtonComponent {
|
|
|
17
19
|
color: string | undefined;
|
|
18
20
|
clicked: EventEmitter<boolean>;
|
|
19
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonComponent, never>;
|
|
20
|
-
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"; }, { "clicked": "clicked"; }, never, ["*"]>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonComponent, "id-button", never, { "secondary": "secondary"; "fab": "fab"; "icon": "icon"; "tertiary": "tertiary"; "toggle": "toggle"; "block": "block"; "sBlock": "sBlock"; "mBlock": "mBlock"; "active": "active"; "submit": "submit"; "search": "search"; "size": "size"; "disabled": "disabled"; "type": "type"; "color": "color"; }, { "clicked": "clicked"; }, never, ["*"]>;
|
|
21
23
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { IDFormBase } from '../base/IDFormBase';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDTextareaComponent extends IDFormBase {
|
|
4
|
+
noFade: Boolean;
|
|
4
5
|
constructor();
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDTextareaComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDTextareaComponent, "id-textarea", never, {}, {}, never, ["*"]>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDTextareaComponent, "id-textarea", never, { "noFade": "noFade"; }, {}, never, ["*"]>;
|
|
7
8
|
}
|