@inera/ids-angular 4.7.0 → 4.9.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-components-alert.umd.js +4 -1
- package/bundles/inera-ids-angular-components-alert.umd.js.map +1 -1
- package/bundles/inera-ids-angular-components-button-group.umd.js +5 -2
- package/bundles/inera-ids-angular-components-button-group.umd.js.map +1 -1
- package/bundles/inera-ids-angular-components-card.umd.js +11 -5
- package/bundles/inera-ids-angular-components-card.umd.js.map +1 -1
- package/bundles/inera-ids-angular-components-form-range.umd.js +4 -1
- package/bundles/inera-ids-angular-components-form-range.umd.js.map +1 -1
- package/bundles/inera-ids-angular-components-form-textarea.umd.js +4 -1
- package/bundles/inera-ids-angular-components-form-textarea.umd.js.map +1 -1
- package/bundles/inera-ids-angular-components-tooltip.umd.js +5 -2
- package/bundles/inera-ids-angular-components-tooltip.umd.js.map +1 -1
- package/components/alert/alert.component.d.ts +2 -1
- package/components/button-group/button-group.component.d.ts +2 -2
- package/components/card/card.component.d.ts +5 -3
- package/components/form/range/range.component.d.ts +2 -1
- package/components/form/textarea/textarea.component.d.ts +2 -1
- package/components/tooltip/tooltip.component.d.ts +2 -1
- package/esm2015/components/alert/alert.component.js +5 -2
- package/esm2015/components/button-group/button-group.component.js +6 -3
- package/esm2015/components/card/card.component.js +12 -6
- package/esm2015/components/form/range/range.component.js +5 -2
- package/esm2015/components/form/textarea/textarea.component.js +5 -2
- package/esm2015/components/tooltip/tooltip.component.js +9 -5
- package/fesm2015/inera-ids-angular-components-alert.js +4 -1
- package/fesm2015/inera-ids-angular-components-alert.js.map +1 -1
- package/fesm2015/inera-ids-angular-components-button-group.js +5 -2
- package/fesm2015/inera-ids-angular-components-button-group.js.map +1 -1
- package/fesm2015/inera-ids-angular-components-card.js +11 -5
- package/fesm2015/inera-ids-angular-components-card.js.map +1 -1
- package/fesm2015/inera-ids-angular-components-form-range.js +4 -1
- package/fesm2015/inera-ids-angular-components-form-range.js.map +1 -1
- package/fesm2015/inera-ids-angular-components-form-textarea.js +4 -1
- package/fesm2015/inera-ids-angular-components-form-textarea.js.map +1 -1
- package/fesm2015/inera-ids-angular-components-tooltip.js +8 -4
- package/fesm2015/inera-ids-angular-components-tooltip.js.map +1 -1
- package/package.json +2 -2
|
@@ -10,10 +10,11 @@ export declare class IDAlertComponent {
|
|
|
10
10
|
headline: string;
|
|
11
11
|
live: string;
|
|
12
12
|
type: string;
|
|
13
|
+
norole: boolean;
|
|
13
14
|
srclosetext: string;
|
|
14
15
|
sricontitle: string;
|
|
15
16
|
onClosed: EventEmitter<boolean>;
|
|
16
17
|
onCollapsed: EventEmitter<boolean>;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDAlertComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertComponent, "id-alert", never, { "dismissible": "dismissible"; "collapsable": "collapsable"; "collapsed": "collapsed"; "srcollapsetext": "srcollapsetext"; "srexpandtext": "srexpandtext"; "headline": "headline"; "live": "live"; "type": "type"; "srclosetext": "srclosetext"; "sricontitle": "sricontitle"; }, { "onClosed": "onClosed"; "onCollapsed": "onCollapsed"; }, never, ["*"]>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertComponent, "id-alert", never, { "dismissible": "dismissible"; "collapsable": "collapsable"; "collapsed": "collapsed"; "srcollapsetext": "srcollapsetext"; "srexpandtext": "srexpandtext"; "headline": "headline"; "live": "live"; "type": "type"; "norole": "norole"; "srclosetext": "srclosetext"; "sricontitle": "sricontitle"; }, { "onClosed": "onClosed"; "onCollapsed": "onCollapsed"; }, never, ["*"]>;
|
|
19
20
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDButtonGroupComponent {
|
|
3
|
-
constructor();
|
|
4
3
|
rtl: boolean;
|
|
5
4
|
unresponsive: boolean;
|
|
5
|
+
justify: 'start' | 'center' | 'end';
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonGroupComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonGroupComponent, "id-button-group", never, { "rtl": "rtl"; "unresponsive": "unresponsive"; }, {}, never, ["*"]>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonGroupComponent, "id-button-group", never, { "rtl": "rtl"; "unresponsive": "unresponsive"; "justify": "justify"; }, {}, never, ["*"]>;
|
|
8
8
|
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDCardComponent {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
hideonm: boolean;
|
|
5
|
+
hideons: boolean;
|
|
6
|
+
fill: number;
|
|
7
|
+
border: number;
|
|
6
8
|
interactive: boolean;
|
|
7
9
|
lean: boolean;
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDCardComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "fill": "fill"; "
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDCardComponent, "id-card", never, { "hideonm": "hideonm"; "hideons": "hideons"; "fill": "fill"; "border": "border"; "interactive": "interactive"; "lean": "lean"; }, {}, never, ["*"]>;
|
|
10
12
|
}
|
|
@@ -2,6 +2,7 @@ import { IDFormBase } from '@inera/ids-angular/common';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDRangeComponent extends IDFormBase {
|
|
4
4
|
showticks: boolean;
|
|
5
|
+
interval: number;
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDRangeComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDRangeComponent, "id-range", never, { "showticks": "showticks"; }, {}, never, ["*"]>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDRangeComponent, "id-range", never, { "showticks": "showticks"; "interval": "interval"; }, {}, never, ["*"]>;
|
|
7
8
|
}
|
|
@@ -2,7 +2,8 @@ import { IDFormBase } from '@inera/ids-angular/common';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IDTextareaComponent extends IDFormBase {
|
|
4
4
|
block: Boolean;
|
|
5
|
+
autosize: Boolean;
|
|
5
6
|
constructor();
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDTextareaComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDTextareaComponent, "id-textarea", never, { "block": "block"; }, {}, never, ["*"]>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDTextareaComponent, "id-textarea", never, { "block": "block"; "autosize": "autosize"; }, {}, never, ["*"]>;
|
|
8
9
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDTooltipComponent {
|
|
3
|
+
position: 'top-left' | 'top' | 'top-right' | 'bottom-left' | 'bottom' | 'bottom-right';
|
|
3
4
|
constructor();
|
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDTooltipComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDTooltipComponent, "id-tooltip", never, {}, {}, never, ["*"]>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDTooltipComponent, "id-tooltip", never, { "position": "position"; }, {}, never, ["*"]>;
|
|
6
7
|
}
|
|
@@ -10,6 +10,7 @@ export class IDAlertComponent {
|
|
|
10
10
|
this.headline = '';
|
|
11
11
|
this.live = '';
|
|
12
12
|
this.type = '';
|
|
13
|
+
this.norole = false;
|
|
13
14
|
this.srclosetext = '';
|
|
14
15
|
this.sricontitle = '';
|
|
15
16
|
this.onClosed = new EventEmitter();
|
|
@@ -17,7 +18,7 @@ export class IDAlertComponent {
|
|
|
17
18
|
}
|
|
18
19
|
}
|
|
19
20
|
IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
20
|
-
IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", collapsed: "collapsed", srcollapsetext: "srcollapsetext", srexpandtext: "srexpandtext", headline: "headline", live: "live", type: "type", srclosetext: "srclosetext", sricontitle: "sricontitle" }, outputs: { onClosed: "onClosed", onCollapsed: "onCollapsed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
|
|
21
|
+
IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", collapsed: "collapsed", srcollapsetext: "srcollapsetext", srexpandtext: "srexpandtext", headline: "headline", live: "live", type: "type", norole: "norole", srclosetext: "srclosetext", sricontitle: "sricontitle" }, outputs: { onClosed: "onClosed", onCollapsed: "onCollapsed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.norole]=\"norole ? true : null\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"norole ? null : live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
|
|
21
22
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
|
|
22
23
|
type: Component,
|
|
23
24
|
args: [{
|
|
@@ -41,6 +42,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
41
42
|
type: Input
|
|
42
43
|
}], type: [{
|
|
43
44
|
type: Input
|
|
45
|
+
}], norole: [{
|
|
46
|
+
type: Input
|
|
44
47
|
}], srclosetext: [{
|
|
45
48
|
type: Input
|
|
46
49
|
}], sricontitle: [{
|
|
@@ -50,4 +53,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
50
53
|
}], onCollapsed: [{
|
|
51
54
|
type: Output
|
|
52
55
|
}] } });
|
|
53
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvY29tcG9uZW50cy9hbGVydC9hbGVydC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBT3ZFLE1BQU0sT0FBTyxnQkFBZ0I7SUFFM0I7UUFHQSxnQkFBVyxHQUFZLEtBQUssQ0FBQztRQUc3QixnQkFBVyxHQUFZLEtBQUssQ0FBQztRQUc3QixjQUFTLEdBQVksS0FBSyxDQUFDO1FBRzNCLG1CQUFjLEdBQXVCLEVBQUUsQ0FBQztRQUd4QyxpQkFBWSxHQUF1QixFQUFFLENBQUM7UUFHdEMsYUFBUSxHQUFXLEVBQUUsQ0FBQztRQUd0QixTQUFJLEdBQVcsRUFBRSxDQUFDO1FBR2xCLFNBQUksR0FBVyxFQUFFLENBQUM7UUFHbEIsV0FBTSxHQUFZLEtBQUssQ0FBQztRQUd4QixnQkFBVyxHQUFXLEVBQUUsQ0FBQztRQUd6QixnQkFBVyxHQUFXLEVBQUUsQ0FBQztRQUd6QixhQUFRLEdBQTBCLElBQUksWUFBWSxFQUFFLENBQUM7UUFFckQsZ0JBQVcsR0FBMEIsSUFBSSxZQUFZLEVBQUUsQ0FBQztJQXRDeEMsQ0FBQzs7OEdBRk4sZ0JBQWdCO2tHQUFoQixnQkFBZ0IsdVlDUDdCLDhrQkFlWTs0RkRSQyxnQkFBZ0I7a0JBTDVCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFVBQVU7b0JBQ3BCLFdBQVcsRUFBRSx3QkFBd0I7b0JBQ3JDLE1BQU0sRUFBRSxDQUFDLDJCQUEyQixDQUFDO2lCQUN0QzswRUFNQyxXQUFXO3NCQURWLEtBQUs7Z0JBSU4sV0FBVztzQkFEVixLQUFLO2dCQUlOLFNBQVM7c0JBRFIsS0FBSztnQkFJTixjQUFjO3NCQURiLEtBQUs7Z0JBSU4sWUFBWTtzQkFEWCxLQUFLO2dCQUlOLFFBQVE7c0JBRFAsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUs7Z0JBSU4sSUFBSTtzQkFESCxLQUFLO2dCQUlOLE1BQU07c0JBREwsS0FBSztnQkFJTixXQUFXO3NCQURWLEtBQUs7Z0JBSU4sV0FBVztzQkFEVixLQUFLO2dCQUlOLFFBQVE7c0JBRFAsTUFBTTtnQkFHUCxXQUFXO3NCQURWLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdpZC1hbGVydCcsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2FsZXJ0LmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZXM6IFsnOmhvc3QgeyBkaXNwbGF5OiBibG9jazsgfSddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBJREFsZXJ0Q29tcG9uZW50IHtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7IH1cclxuXHJcbiAgQElucHV0KClcclxuICBkaXNtaXNzaWJsZTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIGNvbGxhcHNhYmxlOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgY29sbGFwc2VkOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgc3Jjb2xsYXBzZXRleHQ6IHN0cmluZyB8IHVuZGVmaW5lZCA9ICcnO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHNyZXhwYW5kdGV4dDogc3RyaW5nIHwgdW5kZWZpbmVkID0gJyc7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgaGVhZGxpbmU6IHN0cmluZyA9ICcnO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIGxpdmU6IHN0cmluZyA9ICcnO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHR5cGU6IHN0cmluZyA9ICcnO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIG5vcm9sZTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHNyY2xvc2V0ZXh0OiBzdHJpbmcgPSAnJztcclxuXHJcbiAgQElucHV0KClcclxuICBzcmljb250aXRsZTogc3RyaW5nID0gJyc7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIG9uQ2xvc2VkOiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcbiAgQE91dHB1dCgpXHJcbiAgb25Db2xsYXBzZWQ6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuXHJcbn1cclxuIiwiPGlkcy1hbGVydCBcclxuICBbaGVhZGxpbmVdPVwiaGVhZGxpbmVcIlxyXG4gIFthdHRyLm5vcm9sZV09XCJub3JvbGUgPyB0cnVlIDogbnVsbFwiXHJcbiAgW2F0dHIuZGlzbWlzc2libGVdPVwiZGlzbWlzc2libGUgPyB0cnVlIDogbnVsbFwiXHJcbiAgW2F0dHIuY29sbGFwc2FibGVdPVwiY29sbGFwc2FibGUgPyB0cnVlIDogbnVsbFwiXHJcbiAgW2F0dHIuY29sbGFwc2VkXT1cImNvbGxhcHNlZCA/IHRydWUgOiBudWxsXCJcclxuICBbc3Jjb2xsYXBzZXRleHRdPVwic3Jjb2xsYXBzZXRleHRcIlxyXG4gIFtzcmV4cGFuZHRleHRdPVwic3JleHBhbmR0ZXh0XCJcclxuICBbYXR0ci5hcmlhLWxpdmVdPVwibm9yb2xlID8gbnVsbCA6IGxpdmVcIlxyXG4gIFt0eXBlXT1cInR5cGVcIlxyXG4gIFtzcmNsb3NldGV4dF09XCJzcmNsb3NldGV4dFwiXHJcbiAgW3NyaWNvbnRpdGxlXT1cInNyaWNvbnRpdGxlXCJcclxuICAoY2xvc2VkKT1cIm9uQ2xvc2VkLmVtaXQodHJ1ZSlcIlxyXG4gIChjb2xsYXBzZWQpPVwib25Db2xsYXBzZWQuZW1pdCh0cnVlKVwiPlxyXG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuPC9pZHMtYWxlcnQ+Il19
|
|
@@ -4,10 +4,11 @@ export class IDButtonGroupComponent {
|
|
|
4
4
|
constructor() {
|
|
5
5
|
this.rtl = false;
|
|
6
6
|
this.unresponsive = false;
|
|
7
|
+
this.justify = 'start';
|
|
7
8
|
}
|
|
8
9
|
}
|
|
9
10
|
IDButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
-
IDButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonGroupComponent, selector: "id-button-group", inputs: { rtl: "rtl", unresponsive: "unresponsive" }, ngImport: i0, template: "<ids-button-group [unresponsive]=\"unresponsive\" [rtl]=\"rtl\">\r\n <ng-content></ng-content>\r\n</ids-button-group>", encapsulation: i0.ViewEncapsulation.None });
|
|
11
|
+
IDButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonGroupComponent, selector: "id-button-group", inputs: { rtl: "rtl", unresponsive: "unresponsive", justify: "justify" }, ngImport: i0, template: "<ids-button-group [justify]=\"justify\" [unresponsive]=\"unresponsive\" [rtl]=\"rtl\">\r\n <ng-content></ng-content>\r\n</ids-button-group>", encapsulation: i0.ViewEncapsulation.None });
|
|
11
12
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupComponent, decorators: [{
|
|
12
13
|
type: Component,
|
|
13
14
|
args: [{
|
|
@@ -15,9 +16,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
15
16
|
templateUrl: './button-group.component.html',
|
|
16
17
|
encapsulation: ViewEncapsulation.None,
|
|
17
18
|
}]
|
|
18
|
-
}],
|
|
19
|
+
}], propDecorators: { rtl: [{
|
|
19
20
|
type: Input
|
|
20
21
|
}], unresponsive: [{
|
|
21
22
|
type: Input
|
|
23
|
+
}], justify: [{
|
|
24
|
+
type: Input
|
|
22
25
|
}] } });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLWdyb3VwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvYnV0dG9uLWdyb3VwL2J1dHRvbi1ncm91cC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL2J1dHRvbi1ncm91cC9idXR0b24tZ3JvdXAuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBT3BFLE1BQU0sT0FBTyxzQkFBc0I7SUFMbkM7UUFRRSxRQUFHLEdBQVcsS0FBSyxDQUFDO1FBR3BCLGlCQUFZLEdBQVcsS0FBSyxDQUFDO1FBRzdCLFlBQU8sR0FBK0IsT0FBTyxDQUFDO0tBRS9DOztvSEFYWSxzQkFBc0I7d0dBQXRCLHNCQUFzQixpSUNQbkMsOElBRW1COzRGREtOLHNCQUFzQjtrQkFMbEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsaUJBQWlCO29CQUMzQixXQUFXLEVBQUUsK0JBQStCO29CQUM1QyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtpQkFDdEM7OEJBSUMsR0FBRztzQkFERixLQUFLO2dCQUlOLFlBQVk7c0JBRFgsS0FBSztnQkFJTixPQUFPO3NCQUROLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdpZC1idXR0b24tZ3JvdXAnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9idXR0b24tZ3JvdXAuY29tcG9uZW50Lmh0bWwnLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBJREJ1dHRvbkdyb3VwQ29tcG9uZW50IHtcclxuXHJcbiAgQElucHV0KClcclxuICBydGw6Ym9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHVucmVzcG9uc2l2ZTpib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAganVzdGlmeTogJ3N0YXJ0JyB8ICdjZW50ZXInIHwgJ2VuZCcgPSAnc3RhcnQnO1xyXG5cclxufVxyXG4iLCI8aWRzLWJ1dHRvbi1ncm91cCBbanVzdGlmeV09XCJqdXN0aWZ5XCIgW3VucmVzcG9uc2l2ZV09XCJ1bnJlc3BvbnNpdmVcIiBbcnRsXT1cInJ0bFwiPlxyXG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuPC9pZHMtYnV0dG9uLWdyb3VwPiJdfQ==
|
|
@@ -2,14 +2,16 @@ import { Component, Input } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class IDCardComponent {
|
|
4
4
|
constructor() {
|
|
5
|
-
this.
|
|
6
|
-
this.
|
|
5
|
+
this.hideonm = false;
|
|
6
|
+
this.hideons = false;
|
|
7
|
+
this.fill = 0;
|
|
8
|
+
this.border = 0;
|
|
7
9
|
this.interactive = false;
|
|
8
10
|
this.lean = false;
|
|
9
11
|
}
|
|
10
12
|
}
|
|
11
13
|
IDCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12
|
-
IDCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { fill: "fill",
|
|
14
|
+
IDCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { hideonm: "hideonm", hideons: "hideons", fill: "fill", border: "border", interactive: "interactive", lean: "lean" }, ngImport: i0, template: "<ids-card \r\n [hideonm]=\"hideonm\"\r\n [hideons]=\"hideons\"\r\n [lean]=\"lean\"\r\n [interactive]=\"interactive\"\r\n [fill]=\"fill\"\r\n [border]=\"border\">\r\n <ng-content></ng-content>\r\n</ids-card>", styles: [":host { display: block; }"] });
|
|
13
15
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, decorators: [{
|
|
14
16
|
type: Component,
|
|
15
17
|
args: [{
|
|
@@ -17,13 +19,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
17
19
|
templateUrl: './card.component.html',
|
|
18
20
|
styles: [':host { display: block; }'],
|
|
19
21
|
}]
|
|
20
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
22
|
+
}], ctorParameters: function () { return []; }, propDecorators: { hideonm: [{
|
|
21
23
|
type: Input
|
|
22
|
-
}],
|
|
24
|
+
}], hideons: [{
|
|
25
|
+
type: Input
|
|
26
|
+
}], fill: [{
|
|
27
|
+
type: Input
|
|
28
|
+
}], border: [{
|
|
23
29
|
type: Input
|
|
24
30
|
}], interactive: [{
|
|
25
31
|
type: Input
|
|
26
32
|
}], lean: [{
|
|
27
33
|
type: Input
|
|
28
34
|
}] } });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL2NhcmQvY2FyZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL2NhcmQvY2FyZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPakQsTUFBTSxPQUFPLGVBQWU7SUFFMUI7UUFHQSxZQUFPLEdBQVksS0FBSyxDQUFDO1FBR3pCLFlBQU8sR0FBWSxLQUFLLENBQUM7UUFHekIsU0FBSSxHQUFXLENBQUMsQ0FBQztRQUdqQixXQUFNLEdBQVcsQ0FBQyxDQUFDO1FBR25CLGdCQUFXLEdBQVksS0FBSyxDQUFDO1FBRzdCLFNBQUksR0FBWSxLQUFLLENBQUM7SUFsQk4sQ0FBQzs7NkdBRk4sZUFBZTtpR0FBZixlQUFlLDZLQ1A1Qix1TkFRVzs0RkRERSxlQUFlO2tCQUwzQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxTQUFTO29CQUNuQixXQUFXLEVBQUUsdUJBQXVCO29CQUNwQyxNQUFNLEVBQUUsQ0FBQywyQkFBMkIsQ0FBQztpQkFDdEM7MEVBTUMsT0FBTztzQkFETixLQUFLO2dCQUlOLE9BQU87c0JBRE4sS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUs7Z0JBSU4sTUFBTTtzQkFETCxLQUFLO2dCQUlOLFdBQVc7c0JBRFYsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2lkLWNhcmQnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9jYXJkLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZXM6IFsnOmhvc3QgeyBkaXNwbGF5OiBibG9jazsgfSddLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgSURDYXJkQ29tcG9uZW50IHtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7IH1cclxuXHJcbiAgQElucHV0KClcclxuICBoaWRlb25tOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgaGlkZW9uczogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIGZpbGw6IG51bWJlciA9IDA7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgYm9yZGVyOiBudW1iZXIgPSAwO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIGludGVyYWN0aXZlOiBib29sZWFuID0gZmFsc2U7XHJcbiAgXHJcbiAgQElucHV0KClcclxuICBsZWFuOiBib29sZWFuID0gZmFsc2U7XHJcbn1cclxuIiwiPGlkcy1jYXJkIFxyXG4gIFtoaWRlb25tXT1cImhpZGVvbm1cIlxyXG4gIFtoaWRlb25zXT1cImhpZGVvbnNcIlxyXG4gIFtsZWFuXT1cImxlYW5cIlxyXG4gIFtpbnRlcmFjdGl2ZV09XCJpbnRlcmFjdGl2ZVwiXHJcbiAgW2ZpbGxdPVwiZmlsbFwiXHJcbiAgW2JvcmRlcl09XCJib3JkZXJcIj5cclxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XHJcbjwvaWRzLWNhcmQ+Il19
|
|
@@ -5,10 +5,11 @@ export class IDRangeComponent extends IDFormBase {
|
|
|
5
5
|
constructor() {
|
|
6
6
|
super(...arguments);
|
|
7
7
|
this.showticks = false;
|
|
8
|
+
this.interval = 0;
|
|
8
9
|
}
|
|
9
10
|
}
|
|
10
11
|
IDRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
11
|
-
IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showticks: "showticks" }, usesInheritance: true, ngImport: i0, template: "<ids-range \r\n [invalid]=\"invalid\"\r\n [showticks]=\"showticks\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0.ViewEncapsulation.None });
|
|
12
|
+
IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showticks: "showticks", interval: "interval" }, usesInheritance: true, ngImport: i0, template: "<ids-range \r\n [invalid]=\"invalid\"\r\n [interval]=\"interval\"\r\n [showticks]=\"showticks\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0.ViewEncapsulation.None });
|
|
12
13
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, decorators: [{
|
|
13
14
|
type: Component,
|
|
14
15
|
args: [{
|
|
@@ -18,5 +19,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
18
19
|
}]
|
|
19
20
|
}], propDecorators: { showticks: [{
|
|
20
21
|
type: Input
|
|
22
|
+
}], interval: [{
|
|
23
|
+
type: Input
|
|
21
24
|
}] } });
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFuZ2UuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvY29tcG9uZW50cy9mb3JtL3JhbmdlL3JhbmdlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvZm9ybS9yYW5nZS9yYW5nZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7O0FBT3ZELE1BQU0sT0FBTyxnQkFBaUIsU0FBUSxVQUFVO0lBTGhEOztRQVFFLGNBQVMsR0FBWSxLQUFLLENBQUM7UUFHM0IsYUFBUSxHQUFXLENBQUMsQ0FBQztLQUV0Qjs7OEdBUlksZ0JBQWdCO2tHQUFoQixnQkFBZ0IsaUlDUjdCLHNPQU9ZOzRGRENDLGdCQUFnQjtrQkFMNUIsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsVUFBVTtvQkFDcEIsV0FBVyxFQUFFLHdCQUF3QjtvQkFDckMsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7aUJBQ3RDOzhCQUlDLFNBQVM7c0JBRFIsS0FBSztnQkFJTixRQUFRO3NCQURQLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IElERm9ybUJhc2UgfSBmcm9tICdAaW5lcmEvaWRzLWFuZ3VsYXIvY29tbW9uJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaWQtcmFuZ2UnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9yYW5nZS5jb21wb25lbnQuaHRtbCcsXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxufSlcclxuZXhwb3J0IGNsYXNzIElEUmFuZ2VDb21wb25lbnQgZXh0ZW5kcyBJREZvcm1CYXNlIHtcclxuXHJcbiAgQElucHV0KClcclxuICBzaG93dGlja3M6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgQElucHV0KClcclxuICBpbnRlcnZhbDogbnVtYmVyID0gMDtcclxuXHJcbn1cclxuIiwiPGlkcy1yYW5nZSBcclxuICBbaW52YWxpZF09XCJpbnZhbGlkXCJcclxuICBbaW50ZXJ2YWxdPVwiaW50ZXJ2YWxcIlxyXG4gIFtzaG93dGlja3NdPVwic2hvd3RpY2tzXCJcclxuICAob25WYWxpZCk9XCJlbWl0T25WYWxpZCgkZXZlbnQpXCJcclxuICAob25JbnZhbGlkKT1cImVtaXRPbkludmFsaWQoJGV2ZW50KVwiPlxyXG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuPC9pZHMtcmFuZ2U+Il19
|
|
@@ -6,10 +6,11 @@ export class IDTextareaComponent extends IDFormBase {
|
|
|
6
6
|
constructor() {
|
|
7
7
|
super();
|
|
8
8
|
this.block = false;
|
|
9
|
+
this.autosize = false;
|
|
9
10
|
}
|
|
10
11
|
}
|
|
11
12
|
IDTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12
|
-
IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { block: "block" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea \r\n [ngStyle]=\"{ 'display': block ? 'block' : '
|
|
13
|
+
IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { block: "block", autosize: "autosize" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea \r\n [ngStyle]=\"{ 'display': block || autosize ? 'block' : 'inline-block' }\"\r\n [attr.light]=\"light ? true : null\"\r\n [autosize]=\"autosize ? true : null\"\r\n [block]=\"block ? true : null\"\r\n [invalid]=\"invalid\" \r\n [attr.novalidation]=\"novalidation ? true : null\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-textarea>", directives: [{ type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
13
14
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, decorators: [{
|
|
14
15
|
type: Component,
|
|
15
16
|
args: [{
|
|
@@ -19,5 +20,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
19
20
|
}]
|
|
20
21
|
}], ctorParameters: function () { return []; }, propDecorators: { block: [{
|
|
21
22
|
type: Input
|
|
23
|
+
}], autosize: [{
|
|
24
|
+
type: Input
|
|
22
25
|
}] } });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvY29tcG9uZW50cy9mb3JtL3RleHRhcmVhL3RleHRhcmVhLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvZm9ybS90ZXh0YXJlYS90ZXh0YXJlYS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwRSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7OztBQU92RCxNQUFNLE9BQU8sbUJBQW9CLFNBQVEsVUFBVTtJQVFqRDtRQUNFLEtBQUssRUFBRSxDQUFDO1FBTlYsVUFBSyxHQUFZLEtBQUssQ0FBQztRQUd2QixhQUFRLEdBQVksS0FBSyxDQUFDO0lBSTFCLENBQUM7O2lIQVZVLG1CQUFtQjtxR0FBbkIsbUJBQW1CLDRIQ1JoQyxrYkFVZTs0RkRGRixtQkFBbUI7a0JBTC9CLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGFBQWE7b0JBQ3ZCLFdBQVcsRUFBRSwyQkFBMkI7b0JBQ3hDLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO2lCQUN0QzswRUFJQyxLQUFLO3NCQURKLEtBQUs7Z0JBSU4sUUFBUTtzQkFEUCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgSURGb3JtQmFzZSB9IGZyb20gJ0BpbmVyYS9pZHMtYW5ndWxhci9jb21tb24nO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdpZC10ZXh0YXJlYScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3RleHRhcmVhLmNvbXBvbmVudC5odG1sJyxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgSURUZXh0YXJlYUNvbXBvbmVudCBleHRlbmRzIElERm9ybUJhc2Uge1xyXG5cclxuICBASW5wdXQoKVxyXG4gIGJsb2NrOiBCb29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgYXV0b3NpemU6IEJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7XHJcbiAgICBzdXBlcigpO1xyXG4gIH1cclxuXHJcbn1cclxuIiwiPGlkcy10ZXh0YXJlYSBcclxuICBbbmdTdHlsZV09XCJ7ICdkaXNwbGF5JzogYmxvY2sgfHwgYXV0b3NpemUgPyAnYmxvY2snIDogJ2lubGluZS1ibG9jaycgfVwiXHJcbiAgW2F0dHIubGlnaHRdPVwibGlnaHQgPyB0cnVlIDogbnVsbFwiXHJcbiAgW2F1dG9zaXplXT1cImF1dG9zaXplID8gdHJ1ZSA6IG51bGxcIlxyXG4gIFtibG9ja109XCJibG9jayA/IHRydWUgOiBudWxsXCJcclxuICBbaW52YWxpZF09XCJpbnZhbGlkXCIgXHJcbiAgW2F0dHIubm92YWxpZGF0aW9uXT1cIm5vdmFsaWRhdGlvbiA/IHRydWUgOiBudWxsXCJcclxuICAob25WYWxpZCk9XCJlbWl0T25WYWxpZCgkZXZlbnQpXCJcclxuICAob25JbnZhbGlkKT1cImVtaXRPbkludmFsaWQoJGV2ZW50KVwiPlxyXG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuPC9pZHMtdGV4dGFyZWE+Il19
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class IDTooltipComponent {
|
|
4
|
-
constructor() {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.position = 'top';
|
|
6
|
+
}
|
|
5
7
|
}
|
|
6
8
|
IDTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7
|
-
IDTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTooltipComponent, selector: "id-tooltip", ngImport: i0, template: "<ids-tooltip>\r\n <ng-content></ng-content>\r\n</ids-tooltip>" });
|
|
9
|
+
IDTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTooltipComponent, selector: "id-tooltip", inputs: { position: "position" }, ngImport: i0, template: "<ids-tooltip [position]=\"position\">\r\n <ng-content></ng-content>\r\n</ids-tooltip>" });
|
|
8
10
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTooltipComponent, decorators: [{
|
|
9
11
|
type: Component,
|
|
10
12
|
args: [{
|
|
11
13
|
selector: 'id-tooltip',
|
|
12
14
|
templateUrl: './tooltip.component.html',
|
|
13
15
|
}]
|
|
14
|
-
}], ctorParameters: function () { return []; }
|
|
15
|
-
|
|
16
|
+
}], ctorParameters: function () { return []; }, propDecorators: { position: [{
|
|
17
|
+
type: Input
|
|
18
|
+
}] } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL3Rvb2x0aXAvdG9vbHRpcC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL3Rvb2x0aXAvdG9vbHRpcC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNakQsTUFBTSxPQUFPLGtCQUFrQjtJQUs3QjtRQUZBLGFBQVEsR0FBa0YsS0FBSyxDQUFDO0lBRWhGLENBQUM7O2dIQUxOLGtCQUFrQjtvR0FBbEIsa0JBQWtCLG9GQ04vQix3RkFFYzs0RkRJRCxrQkFBa0I7a0JBSjlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFlBQVk7b0JBQ3RCLFdBQVcsRUFBRSwwQkFBMEI7aUJBQ3hDOzBFQUlDLFFBQVE7c0JBRFAsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnaWQtdG9vbHRpcCcsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3Rvb2x0aXAuY29tcG9uZW50Lmh0bWwnLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgSURUb29sdGlwQ29tcG9uZW50IHtcclxuXHJcbiAgQElucHV0KClcclxuICBwb3NpdGlvbjogICd0b3AtbGVmdCcgfCAndG9wJyB8ICd0b3AtcmlnaHQnIHwgJ2JvdHRvbS1sZWZ0JyB8ICdib3R0b20nIHwgJ2JvdHRvbS1yaWdodCcgPSAndG9wJztcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7IH1cclxufVxyXG4iLCI8aWRzLXRvb2x0aXAgW3Bvc2l0aW9uXT1cInBvc2l0aW9uXCI+XHJcbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxyXG48L2lkcy10b29sdGlwPiJdfQ==
|
|
@@ -13,6 +13,7 @@ class IDAlertComponent {
|
|
|
13
13
|
this.headline = '';
|
|
14
14
|
this.live = '';
|
|
15
15
|
this.type = '';
|
|
16
|
+
this.norole = false;
|
|
16
17
|
this.srclosetext = '';
|
|
17
18
|
this.sricontitle = '';
|
|
18
19
|
this.onClosed = new EventEmitter();
|
|
@@ -20,7 +21,7 @@ class IDAlertComponent {
|
|
|
20
21
|
}
|
|
21
22
|
}
|
|
22
23
|
IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
23
|
-
IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", collapsed: "collapsed", srcollapsetext: "srcollapsetext", srexpandtext: "srexpandtext", headline: "headline", live: "live", type: "type", srclosetext: "srclosetext", sricontitle: "sricontitle" }, outputs: { onClosed: "onClosed", onCollapsed: "onCollapsed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
|
|
24
|
+
IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", collapsed: "collapsed", srcollapsetext: "srcollapsetext", srexpandtext: "srexpandtext", headline: "headline", live: "live", type: "type", norole: "norole", srclosetext: "srclosetext", sricontitle: "sricontitle" }, outputs: { onClosed: "onClosed", onCollapsed: "onCollapsed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.norole]=\"norole ? true : null\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"norole ? null : live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
|
|
24
25
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
|
|
25
26
|
type: Component,
|
|
26
27
|
args: [{
|
|
@@ -44,6 +45,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
44
45
|
type: Input
|
|
45
46
|
}], type: [{
|
|
46
47
|
type: Input
|
|
48
|
+
}], norole: [{
|
|
49
|
+
type: Input
|
|
47
50
|
}], srclosetext: [{
|
|
48
51
|
type: Input
|
|
49
52
|
}], sricontitle: [{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-alert.js","sources":["../../../projects/ids-angular/components/alert/alert.component.ts","../../../projects/ids-angular/components/alert/alert.component.html","../../../projects/ids-angular/components/alert/alert.module.ts","../../../projects/ids-angular/components/alert/inera-ids-angular-components-alert.ts"],"sourcesContent":["import { Component, EventEmitter, Input, Output } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-alert',\r\n templateUrl: './alert.component.html',\r\n styles: [':host { display: block; }']\r\n})\r\nexport class IDAlertComponent {\r\n\r\n constructor() { }\r\n\r\n @Input()\r\n dismissible: boolean = false;\r\n\r\n @Input()\r\n collapsable: boolean = false;\r\n\r\n @Input()\r\n collapsed: boolean = false;\r\n\r\n @Input()\r\n srcollapsetext: string | undefined = '';\r\n\r\n @Input()\r\n srexpandtext: string | undefined = '';\r\n\r\n @Input()\r\n headline: string = '';\r\n\r\n @Input()\r\n live: string = '';\r\n\r\n @Input()\r\n type: string = '';\r\n\r\n @Input()\r\n srclosetext: string = '';\r\n\r\n @Input()\r\n sricontitle: string = '';\r\n\r\n @Output()\r\n onClosed: EventEmitter<boolean> = new EventEmitter();\r\n @Output()\r\n onCollapsed: EventEmitter<boolean> = new EventEmitter();\r\n\r\n}\r\n","<ids-alert \r\n [headline]=\"headline\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDAlertComponent } from './alert.component';\r\nimport '@inera/ids-core/components/alert/register';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDAlertComponent\r\n ],\r\n exports: [\r\n IDAlertComponent\r\n ],\r\n imports: [CommonModule],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDAlertModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,gBAAgB,CAAA;AAE3B,IAAA,WAAA,GAAA;QAGA,IAAW,CAAA,WAAA,GAAY,KAAK,CAAC;QAG7B,IAAW,CAAA,WAAA,GAAY,KAAK,CAAC;QAG7B,IAAS,CAAA,SAAA,GAAY,KAAK,CAAC;QAG3B,IAAc,CAAA,cAAA,GAAuB,EAAE,CAAC;QAGxC,IAAY,CAAA,YAAA,GAAuB,EAAE,CAAC;QAGtC,IAAQ,CAAA,QAAA,GAAW,EAAE,CAAC;QAGtB,IAAI,CAAA,IAAA,GAAW,EAAE,CAAC;QAGlB,IAAI,CAAA,IAAA,GAAW,EAAE,CAAC;QAGlB,IAAW,CAAA,WAAA,GAAW,EAAE,CAAC;QAGzB,IAAW,CAAA,WAAA,GAAW,EAAE,CAAC;AAGzB,QAAA,IAAA,CAAA,QAAQ,GAA0B,IAAI,YAAY,EAAE,CAAC;AAErD,QAAA,IAAA,CAAA,WAAW,GAA0B,IAAI,YAAY,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-alert.js","sources":["../../../projects/ids-angular/components/alert/alert.component.ts","../../../projects/ids-angular/components/alert/alert.component.html","../../../projects/ids-angular/components/alert/alert.module.ts","../../../projects/ids-angular/components/alert/inera-ids-angular-components-alert.ts"],"sourcesContent":["import { Component, EventEmitter, Input, Output } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-alert',\r\n templateUrl: './alert.component.html',\r\n styles: [':host { display: block; }']\r\n})\r\nexport class IDAlertComponent {\r\n\r\n constructor() { }\r\n\r\n @Input()\r\n dismissible: boolean = false;\r\n\r\n @Input()\r\n collapsable: boolean = false;\r\n\r\n @Input()\r\n collapsed: boolean = false;\r\n\r\n @Input()\r\n srcollapsetext: string | undefined = '';\r\n\r\n @Input()\r\n srexpandtext: string | undefined = '';\r\n\r\n @Input()\r\n headline: string = '';\r\n\r\n @Input()\r\n live: string = '';\r\n\r\n @Input()\r\n type: string = '';\r\n\r\n @Input()\r\n norole: boolean = false;\r\n\r\n @Input()\r\n srclosetext: string = '';\r\n\r\n @Input()\r\n sricontitle: string = '';\r\n\r\n @Output()\r\n onClosed: EventEmitter<boolean> = new EventEmitter();\r\n @Output()\r\n onCollapsed: EventEmitter<boolean> = new EventEmitter();\r\n\r\n}\r\n","<ids-alert \r\n [headline]=\"headline\"\r\n [attr.norole]=\"norole ? true : null\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"norole ? null : live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDAlertComponent } from './alert.component';\r\nimport '@inera/ids-core/components/alert/register';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDAlertComponent\r\n ],\r\n exports: [\r\n IDAlertComponent\r\n ],\r\n imports: [CommonModule],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDAlertModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,gBAAgB,CAAA;AAE3B,IAAA,WAAA,GAAA;QAGA,IAAW,CAAA,WAAA,GAAY,KAAK,CAAC;QAG7B,IAAW,CAAA,WAAA,GAAY,KAAK,CAAC;QAG7B,IAAS,CAAA,SAAA,GAAY,KAAK,CAAC;QAG3B,IAAc,CAAA,cAAA,GAAuB,EAAE,CAAC;QAGxC,IAAY,CAAA,YAAA,GAAuB,EAAE,CAAC;QAGtC,IAAQ,CAAA,QAAA,GAAW,EAAE,CAAC;QAGtB,IAAI,CAAA,IAAA,GAAW,EAAE,CAAC;QAGlB,IAAI,CAAA,IAAA,GAAW,EAAE,CAAC;QAGlB,IAAM,CAAA,MAAA,GAAY,KAAK,CAAC;QAGxB,IAAW,CAAA,WAAA,GAAW,EAAE,CAAC;QAGzB,IAAW,CAAA,WAAA,GAAW,EAAE,CAAC;AAGzB,QAAA,IAAA,CAAA,QAAQ,GAA0B,IAAI,YAAY,EAAE,CAAC;AAErD,QAAA,IAAA,CAAA,WAAW,GAA0B,IAAI,YAAY,EAAE,CAAC;KAtCvC;;8GAFN,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAhB,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,gBAAgB,uYCP7B,8kBAeY,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,CAAA,CAAA;4FDRC,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAL5B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,UAAU;AACpB,oBAAA,WAAW,EAAE,wBAAwB;oBACrC,MAAM,EAAE,CAAC,2BAA2B,CAAC;AACtC,iBAAA,CAAA;0EAMC,WAAW,EAAA,CAAA;sBADV,KAAK;gBAIN,WAAW,EAAA,CAAA;sBADV,KAAK;gBAIN,SAAS,EAAA,CAAA;sBADR,KAAK;gBAIN,cAAc,EAAA,CAAA;sBADb,KAAK;gBAIN,YAAY,EAAA,CAAA;sBADX,KAAK;gBAIN,QAAQ,EAAA,CAAA;sBADP,KAAK;gBAIN,IAAI,EAAA,CAAA;sBADH,KAAK;gBAIN,IAAI,EAAA,CAAA;sBADH,KAAK;gBAIN,MAAM,EAAA,CAAA;sBADL,KAAK;gBAIN,WAAW,EAAA,CAAA;sBADV,KAAK;gBAIN,WAAW,EAAA,CAAA;sBADV,KAAK;gBAIN,QAAQ,EAAA,CAAA;sBADP,MAAM;gBAGP,WAAW,EAAA,CAAA;sBADV,MAAM;;;ME/BI,aAAa,CAAA;;2GAAb,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAb,aAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,aAAa,EARtB,YAAA,EAAA,CAAA,gBAAgB,CAKR,EAAA,OAAA,EAAA,CAAA,YAAY,aAFpB,gBAAgB,CAAA,EAAA,CAAA,CAAA;4GAKP,aAAa,EAAA,OAAA,EAAA,CAHf,CAAC,YAAY,CAAC,CAAA,EAAA,CAAA,CAAA;4FAGZ,aAAa,EAAA,UAAA,EAAA,CAAA;kBAVzB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,gBAAgB;AACjB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,gBAAgB;AACjB,qBAAA;oBACD,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA,CAAA;;;ACdD;;AAEG;;;;"}
|
|
@@ -6,10 +6,11 @@ class IDButtonGroupComponent {
|
|
|
6
6
|
constructor() {
|
|
7
7
|
this.rtl = false;
|
|
8
8
|
this.unresponsive = false;
|
|
9
|
+
this.justify = 'start';
|
|
9
10
|
}
|
|
10
11
|
}
|
|
11
12
|
IDButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12
|
-
IDButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonGroupComponent, selector: "id-button-group", inputs: { rtl: "rtl", unresponsive: "unresponsive" }, ngImport: i0, template: "<ids-button-group [unresponsive]=\"unresponsive\" [rtl]=\"rtl\">\r\n <ng-content></ng-content>\r\n</ids-button-group>", encapsulation: i0.ViewEncapsulation.None });
|
|
13
|
+
IDButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonGroupComponent, selector: "id-button-group", inputs: { rtl: "rtl", unresponsive: "unresponsive", justify: "justify" }, ngImport: i0, template: "<ids-button-group [justify]=\"justify\" [unresponsive]=\"unresponsive\" [rtl]=\"rtl\">\r\n <ng-content></ng-content>\r\n</ids-button-group>", encapsulation: i0.ViewEncapsulation.None });
|
|
13
14
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupComponent, decorators: [{
|
|
14
15
|
type: Component,
|
|
15
16
|
args: [{
|
|
@@ -17,10 +18,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
17
18
|
templateUrl: './button-group.component.html',
|
|
18
19
|
encapsulation: ViewEncapsulation.None,
|
|
19
20
|
}]
|
|
20
|
-
}],
|
|
21
|
+
}], propDecorators: { rtl: [{
|
|
21
22
|
type: Input
|
|
22
23
|
}], unresponsive: [{
|
|
23
24
|
type: Input
|
|
25
|
+
}], justify: [{
|
|
26
|
+
type: Input
|
|
24
27
|
}] } });
|
|
25
28
|
|
|
26
29
|
class IDButtonGroupModule {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-button-group.js","sources":["../../../projects/ids-angular/components/button-group/button-group.component.ts","../../../projects/ids-angular/components/button-group/button-group.component.html","../../../projects/ids-angular/components/button-group/button-group.module.ts","../../../projects/ids-angular/components/button-group/inera-ids-angular-components-button-group.ts"],"sourcesContent":["import { Component, Input,
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-button-group.js","sources":["../../../projects/ids-angular/components/button-group/button-group.component.ts","../../../projects/ids-angular/components/button-group/button-group.component.html","../../../projects/ids-angular/components/button-group/button-group.module.ts","../../../projects/ids-angular/components/button-group/inera-ids-angular-components-button-group.ts"],"sourcesContent":["import { Component, Input, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-button-group',\r\n templateUrl: './button-group.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDButtonGroupComponent {\r\n\r\n @Input()\r\n rtl:boolean = false;\r\n\r\n @Input()\r\n unresponsive:boolean = false;\r\n\r\n @Input()\r\n justify: 'start' | 'center' | 'end' = 'start';\r\n\r\n}\r\n","<ids-button-group [justify]=\"justify\" [unresponsive]=\"unresponsive\" [rtl]=\"rtl\">\r\n <ng-content></ng-content>\r\n</ids-button-group>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDButtonGroupComponent } from './button-group.component';\r\nimport '@inera/ids-core/components/button-group/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDButtonGroupComponent\r\n ],\r\n exports: [\r\n IDButtonGroupComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDButtonGroupModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,sBAAsB,CAAA;AALnC,IAAA,WAAA,GAAA;QAQE,IAAG,CAAA,GAAA,GAAW,KAAK,CAAC;QAGpB,IAAY,CAAA,YAAA,GAAW,KAAK,CAAC;QAG7B,IAAO,CAAA,OAAA,GAA+B,OAAO,CAAC;AAE/C,KAAA;;oHAXY,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAtB,sBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,sBAAsB,iICPnC,8IAEmB,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA;4FDKN,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBALlC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,iBAAiB;AAC3B,oBAAA,WAAW,EAAE,+BAA+B;oBAC5C,aAAa,EAAE,iBAAiB,CAAC,IAAI;AACtC,iBAAA,CAAA;8BAIC,GAAG,EAAA,CAAA;sBADF,KAAK;gBAIN,YAAY,EAAA,CAAA;sBADX,KAAK;gBAIN,OAAO,EAAA,CAAA;sBADN,KAAK;;;MEFK,mBAAmB,CAAA;;iHAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;kHAAnB,mBAAmB,EAAA,YAAA,EAAA,CAP5B,sBAAsB,CAAA,EAAA,OAAA,EAAA,CAGtB,sBAAsB,CAAA,EAAA,CAAA,CAAA;kHAIb,mBAAmB,EAAA,CAAA,CAAA;4FAAnB,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAT/B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,sBAAsB;AACvB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,sBAAsB;AACvB,qBAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA,CAAA;;;ACZD;;AAEG;;;;"}
|
|
@@ -4,14 +4,16 @@ import '@inera/ids-core/components/card/register';
|
|
|
4
4
|
|
|
5
5
|
class IDCardComponent {
|
|
6
6
|
constructor() {
|
|
7
|
-
this.
|
|
8
|
-
this.
|
|
7
|
+
this.hideonm = false;
|
|
8
|
+
this.hideons = false;
|
|
9
|
+
this.fill = 0;
|
|
10
|
+
this.border = 0;
|
|
9
11
|
this.interactive = false;
|
|
10
12
|
this.lean = false;
|
|
11
13
|
}
|
|
12
14
|
}
|
|
13
15
|
IDCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
-
IDCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { fill: "fill",
|
|
16
|
+
IDCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { hideonm: "hideonm", hideons: "hideons", fill: "fill", border: "border", interactive: "interactive", lean: "lean" }, ngImport: i0, template: "<ids-card \r\n [hideonm]=\"hideonm\"\r\n [hideons]=\"hideons\"\r\n [lean]=\"lean\"\r\n [interactive]=\"interactive\"\r\n [fill]=\"fill\"\r\n [border]=\"border\">\r\n <ng-content></ng-content>\r\n</ids-card>", styles: [":host { display: block; }"] });
|
|
15
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, decorators: [{
|
|
16
18
|
type: Component,
|
|
17
19
|
args: [{
|
|
@@ -19,9 +21,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
19
21
|
templateUrl: './card.component.html',
|
|
20
22
|
styles: [':host { display: block; }'],
|
|
21
23
|
}]
|
|
22
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
24
|
+
}], ctorParameters: function () { return []; }, propDecorators: { hideonm: [{
|
|
23
25
|
type: Input
|
|
24
|
-
}],
|
|
26
|
+
}], hideons: [{
|
|
27
|
+
type: Input
|
|
28
|
+
}], fill: [{
|
|
29
|
+
type: Input
|
|
30
|
+
}], border: [{
|
|
25
31
|
type: Input
|
|
26
32
|
}], interactive: [{
|
|
27
33
|
type: Input
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-card.js","sources":["../../../projects/ids-angular/components/card/card.component.ts","../../../projects/ids-angular/components/card/card.component.html","../../../projects/ids-angular/components/card/card.module.ts","../../../projects/ids-angular/components/card/inera-ids-angular-components-card.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-card',\r\n templateUrl: './card.component.html',\r\n styles: [':host { display: block; }'],\r\n})\r\nexport class IDCardComponent {\r\n\r\n constructor() { }\r\n\r\n @Input()\r\n
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-card.js","sources":["../../../projects/ids-angular/components/card/card.component.ts","../../../projects/ids-angular/components/card/card.component.html","../../../projects/ids-angular/components/card/card.module.ts","../../../projects/ids-angular/components/card/inera-ids-angular-components-card.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-card',\r\n templateUrl: './card.component.html',\r\n styles: [':host { display: block; }'],\r\n})\r\nexport class IDCardComponent {\r\n\r\n constructor() { }\r\n\r\n @Input()\r\n hideonm: boolean = false;\r\n\r\n @Input()\r\n hideons: boolean = false;\r\n\r\n @Input()\r\n fill: number = 0;\r\n\r\n @Input()\r\n border: number = 0;\r\n\r\n @Input()\r\n interactive: boolean = false;\r\n \r\n @Input()\r\n lean: boolean = false;\r\n}\r\n","<ids-card \r\n [hideonm]=\"hideonm\"\r\n [hideons]=\"hideons\"\r\n [lean]=\"lean\"\r\n [interactive]=\"interactive\"\r\n [fill]=\"fill\"\r\n [border]=\"border\">\r\n <ng-content></ng-content>\r\n</ids-card>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDCardComponent } from './card.component';\r\nimport '@inera/ids-core/components/card/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDCardComponent\r\n ],\r\n exports: [\r\n IDCardComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDCardModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,eAAe,CAAA;AAE1B,IAAA,WAAA,GAAA;QAGA,IAAO,CAAA,OAAA,GAAY,KAAK,CAAC;QAGzB,IAAO,CAAA,OAAA,GAAY,KAAK,CAAC;QAGzB,IAAI,CAAA,IAAA,GAAW,CAAC,CAAC;QAGjB,IAAM,CAAA,MAAA,GAAW,CAAC,CAAC;QAGnB,IAAW,CAAA,WAAA,GAAY,KAAK,CAAC;QAG7B,IAAI,CAAA,IAAA,GAAY,KAAK,CAAC;KAlBL;;6GAFN,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAf,eAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,eAAe,6KCP5B,uNAQW,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,CAAA,CAAA;4FDDE,eAAe,EAAA,UAAA,EAAA,CAAA;kBAL3B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,SAAS;AACnB,oBAAA,WAAW,EAAE,uBAAuB;oBACpC,MAAM,EAAE,CAAC,2BAA2B,CAAC;AACtC,iBAAA,CAAA;0EAMC,OAAO,EAAA,CAAA;sBADN,KAAK;gBAIN,OAAO,EAAA,CAAA;sBADN,KAAK;gBAIN,IAAI,EAAA,CAAA;sBADH,KAAK;gBAIN,MAAM,EAAA,CAAA;sBADL,KAAK;gBAIN,WAAW,EAAA,CAAA;sBADV,KAAK;gBAIN,IAAI,EAAA,CAAA;sBADH,KAAK;;;MEbK,YAAY,CAAA;;0GAAZ,YAAY,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;2GAAZ,YAAY,EAAA,YAAA,EAAA,CAPrB,eAAe,CAAA,EAAA,OAAA,EAAA,CAGf,eAAe,CAAA,EAAA,CAAA,CAAA;2GAIN,YAAY,EAAA,CAAA,CAAA;4FAAZ,YAAY,EAAA,UAAA,EAAA,CAAA;kBATxB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,eAAe;AAChB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,eAAe;AAChB,qBAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA,CAAA;;;ACZD;;AAEG;;;;"}
|
|
@@ -7,10 +7,11 @@ class IDRangeComponent extends IDFormBase {
|
|
|
7
7
|
constructor() {
|
|
8
8
|
super(...arguments);
|
|
9
9
|
this.showticks = false;
|
|
10
|
+
this.interval = 0;
|
|
10
11
|
}
|
|
11
12
|
}
|
|
12
13
|
IDRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
-
IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showticks: "showticks" }, usesInheritance: true, ngImport: i0, template: "<ids-range \r\n [invalid]=\"invalid\"\r\n [showticks]=\"showticks\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0.ViewEncapsulation.None });
|
|
14
|
+
IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showticks: "showticks", interval: "interval" }, usesInheritance: true, ngImport: i0, template: "<ids-range \r\n [invalid]=\"invalid\"\r\n [interval]=\"interval\"\r\n [showticks]=\"showticks\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0.ViewEncapsulation.None });
|
|
14
15
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, decorators: [{
|
|
15
16
|
type: Component,
|
|
16
17
|
args: [{
|
|
@@ -20,6 +21,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
20
21
|
}]
|
|
21
22
|
}], propDecorators: { showticks: [{
|
|
22
23
|
type: Input
|
|
24
|
+
}], interval: [{
|
|
25
|
+
type: Input
|
|
23
26
|
}] } });
|
|
24
27
|
|
|
25
28
|
class IDRangeModule {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-form-range.js","sources":["../../../projects/ids-angular/components/form/range/range.component.ts","../../../projects/ids-angular/components/form/range/range.component.html","../../../projects/ids-angular/components/form/range/range.module.ts","../../../projects/ids-angular/components/form/range/inera-ids-angular-components-form-range.ts"],"sourcesContent":["import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\nimport { IDFormBase } from '@inera/ids-angular/common';\r\n\r\n@Component({\r\n selector: 'id-range',\r\n templateUrl: './range.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDRangeComponent extends IDFormBase {\r\n\r\n @Input()\r\n showticks: boolean = false;\r\n\r\n}\r\n","<ids-range \r\n [invalid]=\"invalid\"\r\n [showticks]=\"showticks\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-range>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDRangeComponent } from './range.component';\r\nimport '@inera/ids-core/components/form/range/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDRangeComponent\r\n ],\r\n exports: [\r\n IDRangeComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDRangeModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;AAQM,MAAO,gBAAiB,SAAQ,UAAU,CAAA;AALhD,IAAA,WAAA,GAAA;;QAQE,IAAS,CAAA,SAAA,GAAY,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-form-range.js","sources":["../../../projects/ids-angular/components/form/range/range.component.ts","../../../projects/ids-angular/components/form/range/range.component.html","../../../projects/ids-angular/components/form/range/range.module.ts","../../../projects/ids-angular/components/form/range/inera-ids-angular-components-form-range.ts"],"sourcesContent":["import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\nimport { IDFormBase } from '@inera/ids-angular/common';\r\n\r\n@Component({\r\n selector: 'id-range',\r\n templateUrl: './range.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDRangeComponent extends IDFormBase {\r\n\r\n @Input()\r\n showticks: boolean = false;\r\n\r\n @Input()\r\n interval: number = 0;\r\n\r\n}\r\n","<ids-range \r\n [invalid]=\"invalid\"\r\n [interval]=\"interval\"\r\n [showticks]=\"showticks\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-range>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDRangeComponent } from './range.component';\r\nimport '@inera/ids-core/components/form/range/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDRangeComponent\r\n ],\r\n exports: [\r\n IDRangeComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDRangeModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;AAQM,MAAO,gBAAiB,SAAQ,UAAU,CAAA;AALhD,IAAA,WAAA,GAAA;;QAQE,IAAS,CAAA,SAAA,GAAY,KAAK,CAAC;QAG3B,IAAQ,CAAA,QAAA,GAAW,CAAC,CAAC;AAEtB,KAAA;;8GARY,gBAAgB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAhB,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,gBAAgB,iICR7B,sOAOY,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA;4FDCC,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAL5B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,UAAU;AACpB,oBAAA,WAAW,EAAE,wBAAwB;oBACrC,aAAa,EAAE,iBAAiB,CAAC,IAAI;AACtC,iBAAA,CAAA;8BAIC,SAAS,EAAA,CAAA;sBADR,KAAK;gBAIN,QAAQ,EAAA,CAAA;sBADP,KAAK;;;MEAK,aAAa,CAAA;;2GAAb,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;4GAAb,aAAa,EAAA,YAAA,EAAA,CAPtB,gBAAgB,CAAA,EAAA,OAAA,EAAA,CAGhB,gBAAgB,CAAA,EAAA,CAAA,CAAA;4GAIP,aAAa,EAAA,CAAA,CAAA;4FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBATzB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,gBAAgB;AACjB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,gBAAgB;AACjB,qBAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA,CAAA;;;ACZD;;AAEG;;;;"}
|
|
@@ -9,10 +9,11 @@ class IDTextareaComponent extends IDFormBase {
|
|
|
9
9
|
constructor() {
|
|
10
10
|
super();
|
|
11
11
|
this.block = false;
|
|
12
|
+
this.autosize = false;
|
|
12
13
|
}
|
|
13
14
|
}
|
|
14
15
|
IDTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { block: "block" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea \r\n [ngStyle]=\"{ 'display': block ? 'block' : '
|
|
16
|
+
IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { block: "block", autosize: "autosize" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea \r\n [ngStyle]=\"{ 'display': block || autosize ? 'block' : 'inline-block' }\"\r\n [attr.light]=\"light ? true : null\"\r\n [autosize]=\"autosize ? true : null\"\r\n [block]=\"block ? true : null\"\r\n [invalid]=\"invalid\" \r\n [attr.novalidation]=\"novalidation ? true : null\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-textarea>", directives: [{ type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
16
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, decorators: [{
|
|
17
18
|
type: Component,
|
|
18
19
|
args: [{
|
|
@@ -22,6 +23,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
22
23
|
}]
|
|
23
24
|
}], ctorParameters: function () { return []; }, propDecorators: { block: [{
|
|
24
25
|
type: Input
|
|
26
|
+
}], autosize: [{
|
|
27
|
+
type: Input
|
|
25
28
|
}] } });
|
|
26
29
|
|
|
27
30
|
class IDTextareaModule {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-form-textarea.js","sources":["../../../projects/ids-angular/components/form/textarea/textarea.component.ts","../../../projects/ids-angular/components/form/textarea/textarea.component.html","../../../projects/ids-angular/components/form/textarea/textarea.module.ts","../../../projects/ids-angular/components/form/textarea/inera-ids-angular-components-form-textarea.ts"],"sourcesContent":["import { Component, Input, ViewEncapsulation } from '@angular/core';\r\nimport { IDFormBase } from '@inera/ids-angular/common';\r\n\r\n@Component({\r\n selector: 'id-textarea',\r\n templateUrl: './textarea.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDTextareaComponent extends IDFormBase {\r\n\r\n @Input()\r\n block: Boolean = false;\r\n\r\n constructor() {\r\n super();\r\n }\r\n\r\n}\r\n","<ids-textarea \r\n [ngStyle]=\"{ 'display': block ? 'block' : '
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-form-textarea.js","sources":["../../../projects/ids-angular/components/form/textarea/textarea.component.ts","../../../projects/ids-angular/components/form/textarea/textarea.component.html","../../../projects/ids-angular/components/form/textarea/textarea.module.ts","../../../projects/ids-angular/components/form/textarea/inera-ids-angular-components-form-textarea.ts"],"sourcesContent":["import { Component, Input, ViewEncapsulation } from '@angular/core';\r\nimport { IDFormBase } from '@inera/ids-angular/common';\r\n\r\n@Component({\r\n selector: 'id-textarea',\r\n templateUrl: './textarea.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDTextareaComponent extends IDFormBase {\r\n\r\n @Input()\r\n block: Boolean = false;\r\n\r\n @Input()\r\n autosize: Boolean = false;\r\n\r\n constructor() {\r\n super();\r\n }\r\n\r\n}\r\n","<ids-textarea \r\n [ngStyle]=\"{ 'display': block || autosize ? 'block' : 'inline-block' }\"\r\n [attr.light]=\"light ? true : null\"\r\n [autosize]=\"autosize ? true : null\"\r\n [block]=\"block ? true : null\"\r\n [invalid]=\"invalid\" \r\n [attr.novalidation]=\"novalidation ? true : null\"\r\n (onValid)=\"emitOnValid($event)\"\r\n (onInvalid)=\"emitOnInvalid($event)\">\r\n <ng-content></ng-content>\r\n</ids-textarea>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDTextareaComponent } from './textarea.component';\r\nimport '@inera/ids-core/components/form/textarea/register';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDTextareaComponent\r\n ],\r\n exports: [\r\n IDTextareaComponent\r\n ],\r\n imports: [CommonModule],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDTextareaModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;AAQM,MAAO,mBAAoB,SAAQ,UAAU,CAAA;AAQjD,IAAA,WAAA,GAAA;AACE,QAAA,KAAK,EAAE,CAAC;QANV,IAAK,CAAA,KAAA,GAAY,KAAK,CAAC;QAGvB,IAAQ,CAAA,QAAA,GAAY,KAAK,CAAC;KAIzB;;iHAVU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,mBAAmB,4HCRhC,kbAUe,EAAA,UAAA,EAAA,CAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA;4FDFF,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAL/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,WAAW,EAAE,2BAA2B;oBACxC,aAAa,EAAE,iBAAiB,CAAC,IAAI;AACtC,iBAAA,CAAA;0EAIC,KAAK,EAAA,CAAA;sBADJ,KAAK;gBAIN,QAAQ,EAAA,CAAA;sBADP,KAAK;;;MEEK,gBAAgB,CAAA;;8GAAhB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAhB,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,EARzB,YAAA,EAAA,CAAA,mBAAmB,CAKX,EAAA,OAAA,EAAA,CAAA,YAAY,aAFpB,mBAAmB,CAAA,EAAA,CAAA,CAAA;+GAKV,gBAAgB,EAAA,OAAA,EAAA,CAHlB,CAAC,YAAY,CAAC,CAAA,EAAA,CAAA,CAAA;4FAGZ,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAV5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;oBACD,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA,CAAA;;;ACdD;;AAEG;;;;"}
|
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
3
3
|
import '@inera/ids-core/components/tooltip/register';
|
|
4
4
|
|
|
5
5
|
class IDTooltipComponent {
|
|
6
|
-
constructor() {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.position = 'top';
|
|
8
|
+
}
|
|
7
9
|
}
|
|
8
10
|
IDTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
IDTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTooltipComponent, selector: "id-tooltip", ngImport: i0, template: "<ids-tooltip>\r\n <ng-content></ng-content>\r\n</ids-tooltip>" });
|
|
11
|
+
IDTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTooltipComponent, selector: "id-tooltip", inputs: { position: "position" }, ngImport: i0, template: "<ids-tooltip [position]=\"position\">\r\n <ng-content></ng-content>\r\n</ids-tooltip>" });
|
|
10
12
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTooltipComponent, decorators: [{
|
|
11
13
|
type: Component,
|
|
12
14
|
args: [{
|
|
13
15
|
selector: 'id-tooltip',
|
|
14
16
|
templateUrl: './tooltip.component.html',
|
|
15
17
|
}]
|
|
16
|
-
}], ctorParameters: function () { return []; }
|
|
18
|
+
}], ctorParameters: function () { return []; }, propDecorators: { position: [{
|
|
19
|
+
type: Input
|
|
20
|
+
}] } });
|
|
17
21
|
|
|
18
22
|
class IDTooltipModule {
|
|
19
23
|
}
|