@inera/ids-angular 1.12.0 → 1.12.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 +8 -1
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/classes/icon/IDIcon.js +4 -1
- package/esm2015/lib/classes/icon/IDIconProps.js +1 -1
- package/esm2015/lib/classes/link/IDLink.js +1 -1
- package/esm2015/lib/classes/link/IDLinkFunction.js +1 -1
- package/esm2015/lib/classes/link/IDLinkProps.js +2 -0
- package/esm2015/lib/classes/link/IDLinkRoute.js +1 -1
- package/esm2015/lib/classes/link/IDLinkWeb.js +1 -1
- package/esm2015/lib/components/link/link.component.js +2 -2
- package/esm2015/public-api.js +2 -2
- package/fesm2015/inera-ids-angular.js +4 -1
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/classes/icon/IDIcon.d.ts +1 -0
- package/lib/classes/icon/IDIconProps.d.ts +1 -0
- package/lib/classes/link/IDLink.d.ts +1 -1
- package/lib/classes/link/IDLinkFunction.d.ts +1 -1
- package/lib/classes/link/{IDLinkProp.d.ts → IDLinkProps.d.ts} +0 -0
- package/lib/classes/link/IDLinkRoute.d.ts +1 -1
- package/lib/classes/link/IDLinkWeb.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/esm2015/lib/classes/link/IDLinkProp.js +0 -2
|
@@ -1211,6 +1211,13 @@
|
|
|
1211
1211
|
enumerable: false,
|
|
1212
1212
|
configurable: true
|
|
1213
1213
|
});
|
|
1214
|
+
Object.defineProperty(IDIcon.prototype, "rotate", {
|
|
1215
|
+
get: function () {
|
|
1216
|
+
return this._props.rotate;
|
|
1217
|
+
},
|
|
1218
|
+
enumerable: false,
|
|
1219
|
+
configurable: true
|
|
1220
|
+
});
|
|
1214
1221
|
return IDIcon;
|
|
1215
1222
|
}());
|
|
1216
1223
|
|
|
@@ -1967,7 +1974,7 @@
|
|
|
1967
1974
|
return IDLinkComponent;
|
|
1968
1975
|
}());
|
|
1969
1976
|
IDLinkComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1970
|
-
IDLinkComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDLinkComponent, selector: "id-link", inputs: { link: "link", notificationBadge: "notificationBadge", prependIcon: "prependIcon", appendIcon: "appendIcon", underlined: "underlined", padding: "padding", outline: "outline", block: "block", color: "color", size: "size", activeicon: "activeicon", external: "external", slot: "slot" }, host: { properties: { "class.ids-block": "this.block" } }, ngImport: i0__namespace, template: "<ids-link \n [attr.underlined]=\"underlined ? '' : null\"\n [color]=\"color\"\n [size]=\"size\"\n [activeicon]=\"activeicon\"\n [padding]=\"padding\"\n [outline]=\"outline\"\n [block]=\"block\"\n [attr.slot]=\"slot\"\n >\n <ids-icon *ngIf=\"prependIcon !== null\"\n slot=\"prepend-icon\" \n [attr.name]=\"prependIcon?.name\"\n [attr.title]=\"prependIcon?.title\" \n [attr.color]=\"prependIcon?.color\" \n [attr.color2]=\"prependIcon?.color2\" \n [attr.size]=\"prependIcon?.size\" \n [attr.padding]=\"prependIcon?.padding\" \n [attr.colorpreset]=\"prependIcon?.colorpreset\" \n [attr.height]=\"prependIcon?.height\" \n [attr.width]=\"prependIcon?.width\"></ids-icon>\n <id-anchor *ngIf=\"link\" [link]=\"link\"></id-anchor>\n <ng-content *ngIf=\"!link\"></ng-content>\n <ids-icon *ngIf=\"appendIcon !== null\" \n slot=\"append-icon\" \n [attr.name]=\"appendIcon?.name\"\n [attr.title]=\"appendIcon?.title\" \n [attr.color]=\"appendIcon?.color\" \n [attr.color2]=\"appendIcon?.color2\"\n [attr.size]=\"appendIcon?.size\" \n [attr.padding]=\"appendIcon?.padding\"
|
|
1977
|
+
IDLinkComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDLinkComponent, selector: "id-link", inputs: { link: "link", notificationBadge: "notificationBadge", prependIcon: "prependIcon", appendIcon: "appendIcon", underlined: "underlined", padding: "padding", outline: "outline", block: "block", color: "color", size: "size", activeicon: "activeicon", external: "external", slot: "slot" }, host: { properties: { "class.ids-block": "this.block" } }, ngImport: i0__namespace, template: "<ids-link \n [attr.underlined]=\"underlined ? '' : null\"\n [color]=\"color\"\n [size]=\"size\"\n [activeicon]=\"activeicon\"\n [padding]=\"padding\"\n [outline]=\"outline\"\n [block]=\"block\"\n [attr.slot]=\"slot\"\n >\n <ids-icon *ngIf=\"prependIcon !== null\"\n slot=\"prepend-icon\" \n [attr.name]=\"prependIcon?.name\"\n [attr.title]=\"prependIcon?.title\" \n [attr.color]=\"prependIcon?.color\" \n [attr.color2]=\"prependIcon?.color2\" \n [attr.size]=\"prependIcon?.size\" \n [attr.padding]=\"prependIcon?.padding\" \n [attr.rotate]=\"prependIcon?.rotate\" \n [attr.colorpreset]=\"prependIcon?.colorpreset\" \n [attr.height]=\"prependIcon?.height\" \n [attr.width]=\"prependIcon?.width\"></ids-icon>\n <id-anchor *ngIf=\"link\" [link]=\"link\"></id-anchor>\n <ng-content *ngIf=\"!link\"></ng-content>\n <ids-icon *ngIf=\"appendIcon !== null\" \n slot=\"append-icon\" \n [attr.name]=\"appendIcon?.name\"\n [attr.title]=\"appendIcon?.title\" \n [attr.color]=\"appendIcon?.color\" \n [attr.color2]=\"appendIcon?.color2\"\n [attr.size]=\"appendIcon?.size\" \n [attr.padding]=\"appendIcon?.padding\" \n [attr.rotate]=\"appendIcon?.rotate\" \n [attr.colorpreset]=\"appendIcon?.colorpreset\" \n [attr.height]=\"appendIcon?.height\" \n [attr.width]=\"appendIcon?.width\"></ids-icon>\n <ids-notification-badge \n *ngIf=\"notificationBadge !== null\"\n [attr.type]=\"notificationBadge.type\"\n [attr.size]=\"notificationBadge.size\">\n {{notificationBadge.value}}\n </ids-notification-badge>\n</ids-link>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1971
1978
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDLinkComponent, decorators: [{
|
|
1972
1979
|
type: i0.Component,
|
|
1973
1980
|
args: [{
|