@inera/ids-angular 1.6.0 → 1.7.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 +11 -5
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/components/breadcrumbs/breadcrumbs.component.js +2 -2
- package/esm2015/lib/components/breadcrumbs/breadcrumbs.module.js +1 -1
- package/esm2015/lib/components/form/checkbox/checkbox.component.js +9 -5
- package/esm2015/lib/components/form/input/input.component.js +9 -4
- package/esm2015/public-api.js +1 -1
- package/fesm2015/inera-ids-angular.js +15 -6
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/components/form/checkbox/checkbox.component.d.ts +2 -1
- package/lib/components/form/input/input.component.d.ts +2 -1
- package/package.json +2 -2
|
@@ -785,7 +785,7 @@
|
|
|
785
785
|
return IDBreadcrumbsComponent;
|
|
786
786
|
}());
|
|
787
787
|
IDBreadcrumbsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
788
|
-
IDBreadcrumbsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDBreadcrumbsComponent, selector: "id-breadcrumbs", inputs: { links: "links", mobileLink: "mobileLink", current: "current", lead: "lead", srlabel: "srlabel" }, ngImport: i0__namespace, template: "<ids-breadcrumbs\n [current]=\"current\"\n [lead]=\"lead\"\n [srlabel]=\"srlabel\">\n <ids-crumb *ngFor=\"let link of links\">\n <id-anchor [link]=\"link\"></id-anchor>\n </ids-crumb>\n <ids-crumb mobile=\"true\" *ngIf=\"mobileLink\">\n <id-anchor [link]=\"mobileLink\"></id-anchor>\n </ids-crumb>\n</ids-breadcrumbs>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
|
|
788
|
+
IDBreadcrumbsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDBreadcrumbsComponent, selector: "id-breadcrumbs", inputs: { links: "links", mobileLink: "mobileLink", current: "current", lead: "lead", srlabel: "srlabel" }, ngImport: i0__namespace, template: "<ids-breadcrumbs\r\n [current]=\"current\"\r\n [lead]=\"lead\"\r\n [srlabel]=\"srlabel\">\r\n <ids-crumb *ngFor=\"let link of links\">\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-crumb>\r\n <ids-crumb mobile=\"true\" *ngIf=\"mobileLink\">\r\n <id-anchor [link]=\"mobileLink\"></id-anchor>\r\n </ids-crumb>\r\n</ids-breadcrumbs>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0__namespace.ViewEncapsulation.None });
|
|
789
789
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDBreadcrumbsComponent, decorators: [{
|
|
790
790
|
type: i0.Component,
|
|
791
791
|
args: [{
|
|
@@ -1043,11 +1043,12 @@
|
|
|
1043
1043
|
|
|
1044
1044
|
var IDInputComponent = /** @class */ (function () {
|
|
1045
1045
|
function IDInputComponent() {
|
|
1046
|
+
this.autofocus = false;
|
|
1046
1047
|
}
|
|
1047
1048
|
return IDInputComponent;
|
|
1048
1049
|
}());
|
|
1049
1050
|
IDInputComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDInputComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1050
|
-
IDInputComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", ngImport: i0__namespace, template: "<ids-input>\r\n <ng-content></ng-content>\r\n</ids-input>", encapsulation: i0__namespace.ViewEncapsulation.None });
|
|
1051
|
+
IDInputComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus" }, ngImport: i0__namespace, template: "<ids-input [autofocus]=\"autofocus\">\r\n <ng-content></ng-content>\r\n</ids-input>", encapsulation: i0__namespace.ViewEncapsulation.None });
|
|
1051
1052
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDInputComponent, decorators: [{
|
|
1052
1053
|
type: i0.Component,
|
|
1053
1054
|
args: [{
|
|
@@ -1055,7 +1056,9 @@
|
|
|
1055
1056
|
templateUrl: './input.component.html',
|
|
1056
1057
|
encapsulation: i0.ViewEncapsulation.None,
|
|
1057
1058
|
}]
|
|
1058
|
-
}]
|
|
1059
|
+
}], propDecorators: { autofocus: [{
|
|
1060
|
+
type: i0.Input
|
|
1061
|
+
}] } });
|
|
1059
1062
|
|
|
1060
1063
|
var IDInputModule = /** @class */ (function () {
|
|
1061
1064
|
function IDInputModule() {
|
|
@@ -1080,11 +1083,12 @@
|
|
|
1080
1083
|
|
|
1081
1084
|
var IDCheckboxComponent = /** @class */ (function () {
|
|
1082
1085
|
function IDCheckboxComponent() {
|
|
1086
|
+
this.valid = true;
|
|
1083
1087
|
}
|
|
1084
1088
|
return IDCheckboxComponent;
|
|
1085
1089
|
}());
|
|
1086
1090
|
IDCheckboxComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1087
|
-
IDCheckboxComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", ngImport: i0__namespace, template: "<ids-checkbox>\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0__namespace.ViewEncapsulation.None });
|
|
1091
|
+
IDCheckboxComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { valid: "valid" }, ngImport: i0__namespace, template: "<ids-checkbox [valid]=\"valid\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0__namespace.ViewEncapsulation.None });
|
|
1088
1092
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCheckboxComponent, decorators: [{
|
|
1089
1093
|
type: i0.Component,
|
|
1090
1094
|
args: [{
|
|
@@ -1092,7 +1096,9 @@
|
|
|
1092
1096
|
templateUrl: './checkbox.component.html',
|
|
1093
1097
|
encapsulation: i0.ViewEncapsulation.None,
|
|
1094
1098
|
}]
|
|
1095
|
-
}], ctorParameters: function () { return []; }
|
|
1099
|
+
}], ctorParameters: function () { return []; }, propDecorators: { valid: [{
|
|
1100
|
+
type: i0.Input
|
|
1101
|
+
}] } });
|
|
1096
1102
|
|
|
1097
1103
|
var IDCheckboxModule = /** @class */ (function () {
|
|
1098
1104
|
function IDCheckboxModule() {
|