@inera/ids-angular 1.4.0 → 1.5.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 +252 -63
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/components/date-label/date-label.component.js +32 -0
- package/esm2015/lib/components/date-label/date-label.module.js +22 -0
- package/esm2015/lib/components/link/link.component.js +4 -2
- package/esm2015/lib/components/list/item/info/list-item-info.component.js +16 -0
- package/esm2015/lib/components/list/item/info/list-item-info.module.js +21 -0
- package/esm2015/lib/components/list/item/list-item.component.js +38 -0
- package/esm2015/lib/components/list/item/list-item.module.js +21 -0
- package/esm2015/lib/components/list/list.component.js +16 -0
- package/esm2015/lib/components/list/list.module.js +22 -0
- package/esm2015/lib/components/notification/badge/notification-badge.component.js +2 -5
- package/esm2015/public-api.js +11 -1
- package/fesm2015/inera-ids-angular.js +227 -62
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/components/date-label/date-label.component.d.ts +11 -0
- package/lib/components/date-label/date-label.module.d.ts +8 -0
- package/lib/components/link/link.component.d.ts +1 -1
- package/lib/components/list/item/info/list-item-info.component.d.ts +6 -0
- package/lib/components/list/item/info/list-item-info.module.d.ts +7 -0
- package/lib/components/list/item/list-item.component.d.ts +13 -0
- package/lib/components/list/item/list-item.module.d.ts +7 -0
- package/lib/components/list/list.component.d.ts +6 -0
- package/lib/components/list/list.module.d.ts +8 -0
- package/lib/components/notification/badge/notification-badge.component.d.ts +1 -2
- package/package.json +2 -2
- package/public-api.d.ts +8 -0
|
@@ -6,6 +6,7 @@ import '@inera/ids-core/components/alert/register';
|
|
|
6
6
|
import '@inera/ids-core/components/alert-global/register';
|
|
7
7
|
import '@inera/ids-core/components/button/register';
|
|
8
8
|
import '@inera/ids-core/components/button-group/register';
|
|
9
|
+
import '@inera/ids-core/components/date-label/register';
|
|
9
10
|
import '@inera/ids-core/components/icon/register';
|
|
10
11
|
import '@inera/ids-core/components/form/input/register';
|
|
11
12
|
import '@inera/ids-core/components/form/checkbox/register';
|
|
@@ -21,10 +22,11 @@ import '@inera/ids-core/components/form/textarea/register';
|
|
|
21
22
|
import '@inera/ids-core/components/grid/row/register';
|
|
22
23
|
import '@inera/ids-core/components/grid/column/register';
|
|
23
24
|
import '@inera/ids-core/components/grid/container/register';
|
|
24
|
-
import '@inera/ids-core/components/link/register';
|
|
25
25
|
import * as i1 from '@angular/platform-browser';
|
|
26
26
|
import * as i3 from '@angular/router';
|
|
27
27
|
import { RouterModule } from '@angular/router';
|
|
28
|
+
import '@inera/ids-core/components/link/register';
|
|
29
|
+
import '@inera/ids-core/components/list/register';
|
|
28
30
|
import '@inera/ids-core/components/notification/badge/register';
|
|
29
31
|
import '@inera/ids-core/components/mobile/menu/register';
|
|
30
32
|
import '@inera/ids-core/components/footer/register';
|
|
@@ -228,6 +230,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
228
230
|
}]
|
|
229
231
|
}] });
|
|
230
232
|
|
|
233
|
+
class IDDateLabelComponent {
|
|
234
|
+
constructor() {
|
|
235
|
+
this.date = null;
|
|
236
|
+
this.year = null;
|
|
237
|
+
this.month = null;
|
|
238
|
+
this.monthLabel = null;
|
|
239
|
+
this.day = null;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
IDDateLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
243
|
+
IDDateLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDateLabelComponent, selector: "id-date-label", inputs: { date: "date", year: "year", month: "month", monthLabel: "monthLabel", day: "day" }, ngImport: i0, template: "<ids-date-label \n [date]=\"date?.toString()\"\n [year]=\"year\"\n [month]=\"month\"\n [monthlabel]=\"monthLabel\"\n [day]=\"day\">\n <ng-content></ng-content>\n</ids-date-label>", encapsulation: i0.ViewEncapsulation.None });
|
|
244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, decorators: [{
|
|
245
|
+
type: Component,
|
|
246
|
+
args: [{
|
|
247
|
+
selector: 'id-date-label',
|
|
248
|
+
templateUrl: './date-label.component.html',
|
|
249
|
+
encapsulation: ViewEncapsulation.None,
|
|
250
|
+
}]
|
|
251
|
+
}], ctorParameters: function () { return []; }, propDecorators: { date: [{
|
|
252
|
+
type: Input
|
|
253
|
+
}], year: [{
|
|
254
|
+
type: Input
|
|
255
|
+
}], month: [{
|
|
256
|
+
type: Input
|
|
257
|
+
}], monthLabel: [{
|
|
258
|
+
type: Input
|
|
259
|
+
}], day: [{
|
|
260
|
+
type: Input
|
|
261
|
+
}] } });
|
|
262
|
+
|
|
263
|
+
class IDDateLabelModule {
|
|
264
|
+
}
|
|
265
|
+
IDDateLabelModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
266
|
+
IDDateLabelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule, declarations: [IDDateLabelComponent], exports: [IDDateLabelComponent] });
|
|
267
|
+
IDDateLabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule });
|
|
268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelModule, decorators: [{
|
|
269
|
+
type: NgModule,
|
|
270
|
+
args: [{
|
|
271
|
+
declarations: [
|
|
272
|
+
IDDateLabelComponent
|
|
273
|
+
],
|
|
274
|
+
exports: [
|
|
275
|
+
IDDateLabelComponent
|
|
276
|
+
],
|
|
277
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
278
|
+
}]
|
|
279
|
+
}] });
|
|
280
|
+
|
|
231
281
|
class IDIcon {
|
|
232
282
|
constructor(_props) {
|
|
233
283
|
this._props = _props;
|
|
@@ -852,62 +902,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
852
902
|
}]
|
|
853
903
|
}] });
|
|
854
904
|
|
|
855
|
-
class IDLinkComponent {
|
|
856
|
-
constructor() {
|
|
857
|
-
this.link = null;
|
|
858
|
-
this.notificationBadge = null;
|
|
859
|
-
this.prependIcon = null;
|
|
860
|
-
this.appendIcon = null;
|
|
861
|
-
this.underlined = false;
|
|
862
|
-
this.padding = null;
|
|
863
|
-
this.outline = null;
|
|
864
|
-
this.block = false;
|
|
865
|
-
this.color = undefined;
|
|
866
|
-
this.size = undefined;
|
|
867
|
-
this.activeicon = false;
|
|
868
|
-
this.external = false;
|
|
869
|
-
this.slot = undefined;
|
|
870
|
-
}
|
|
871
|
-
}
|
|
872
|
-
IDLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
873
|
-
IDLinkComponent.ɵcmp = i0.ɵɵ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, template: "<ids-tab>\n \n</ids-tab>" });
|
|
874
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, decorators: [{
|
|
875
|
-
type: Component,
|
|
876
|
-
args: [{
|
|
877
|
-
selector: 'id-link',
|
|
878
|
-
templateUrl: './link.component.html'
|
|
879
|
-
}]
|
|
880
|
-
}], ctorParameters: function () { return []; }, propDecorators: { link: [{
|
|
881
|
-
type: Input
|
|
882
|
-
}], notificationBadge: [{
|
|
883
|
-
type: Input
|
|
884
|
-
}], prependIcon: [{
|
|
885
|
-
type: Input
|
|
886
|
-
}], appendIcon: [{
|
|
887
|
-
type: Input
|
|
888
|
-
}], underlined: [{
|
|
889
|
-
type: Input
|
|
890
|
-
}], padding: [{
|
|
891
|
-
type: Input
|
|
892
|
-
}], outline: [{
|
|
893
|
-
type: Input
|
|
894
|
-
}], block: [{
|
|
895
|
-
type: Input
|
|
896
|
-
}, {
|
|
897
|
-
type: HostBinding,
|
|
898
|
-
args: ['class.ids-block']
|
|
899
|
-
}], color: [{
|
|
900
|
-
type: Input
|
|
901
|
-
}], size: [{
|
|
902
|
-
type: Input
|
|
903
|
-
}], activeicon: [{
|
|
904
|
-
type: Input
|
|
905
|
-
}], external: [{
|
|
906
|
-
type: Input
|
|
907
|
-
}], slot: [{
|
|
908
|
-
type: Input
|
|
909
|
-
}] } });
|
|
910
|
-
|
|
911
905
|
class IDLink {
|
|
912
906
|
constructor(_label, _id, _classes) {
|
|
913
907
|
this._label = _label;
|
|
@@ -1069,6 +1063,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1069
1063
|
type: Input
|
|
1070
1064
|
}] } });
|
|
1071
1065
|
|
|
1066
|
+
class IDLinkComponent {
|
|
1067
|
+
constructor() {
|
|
1068
|
+
this.link = null;
|
|
1069
|
+
this.notificationBadge = null;
|
|
1070
|
+
this.prependIcon = null;
|
|
1071
|
+
this.appendIcon = null;
|
|
1072
|
+
this.underlined = false;
|
|
1073
|
+
this.padding = null;
|
|
1074
|
+
this.outline = null;
|
|
1075
|
+
this.block = false;
|
|
1076
|
+
this.color = undefined;
|
|
1077
|
+
this.size = undefined;
|
|
1078
|
+
this.activeicon = false;
|
|
1079
|
+
this.external = false;
|
|
1080
|
+
this.slot = undefined;
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
IDLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1084
|
+
IDLinkComponent.ɵcmp = i0.ɵɵ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, 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\" \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.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, decorators: [{
|
|
1086
|
+
type: Component,
|
|
1087
|
+
args: [{
|
|
1088
|
+
selector: 'id-link',
|
|
1089
|
+
templateUrl: './link.component.html'
|
|
1090
|
+
}]
|
|
1091
|
+
}], ctorParameters: function () { return []; }, propDecorators: { link: [{
|
|
1092
|
+
type: Input
|
|
1093
|
+
}], notificationBadge: [{
|
|
1094
|
+
type: Input
|
|
1095
|
+
}], prependIcon: [{
|
|
1096
|
+
type: Input
|
|
1097
|
+
}], appendIcon: [{
|
|
1098
|
+
type: Input
|
|
1099
|
+
}], underlined: [{
|
|
1100
|
+
type: Input
|
|
1101
|
+
}], padding: [{
|
|
1102
|
+
type: Input
|
|
1103
|
+
}], outline: [{
|
|
1104
|
+
type: Input
|
|
1105
|
+
}], block: [{
|
|
1106
|
+
type: Input
|
|
1107
|
+
}, {
|
|
1108
|
+
type: HostBinding,
|
|
1109
|
+
args: ['class.ids-block']
|
|
1110
|
+
}], color: [{
|
|
1111
|
+
type: Input
|
|
1112
|
+
}], size: [{
|
|
1113
|
+
type: Input
|
|
1114
|
+
}], activeicon: [{
|
|
1115
|
+
type: Input
|
|
1116
|
+
}], external: [{
|
|
1117
|
+
type: Input
|
|
1118
|
+
}], slot: [{
|
|
1119
|
+
type: Input
|
|
1120
|
+
}] } });
|
|
1121
|
+
|
|
1072
1122
|
class IDAnchorModule {
|
|
1073
1123
|
}
|
|
1074
1124
|
IDAnchorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1109,14 +1159,131 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1109
1159
|
}]
|
|
1110
1160
|
}] });
|
|
1111
1161
|
|
|
1162
|
+
class IDListComponent {
|
|
1163
|
+
constructor() { }
|
|
1164
|
+
}
|
|
1165
|
+
IDListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1166
|
+
IDListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListComponent, selector: "id-list", ngImport: i0, template: "<ids-list>\n <ng-content></ng-content>\n</ids-list>", encapsulation: i0.ViewEncapsulation.None });
|
|
1167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListComponent, decorators: [{
|
|
1168
|
+
type: Component,
|
|
1169
|
+
args: [{
|
|
1170
|
+
selector: 'id-list',
|
|
1171
|
+
templateUrl: './list.component.html',
|
|
1172
|
+
encapsulation: ViewEncapsulation.None,
|
|
1173
|
+
}]
|
|
1174
|
+
}], ctorParameters: function () { return []; } });
|
|
1175
|
+
|
|
1176
|
+
class IDListModule {
|
|
1177
|
+
}
|
|
1178
|
+
IDListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1179
|
+
IDListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule, declarations: [IDListComponent], exports: [IDListComponent] });
|
|
1180
|
+
IDListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule });
|
|
1181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListModule, decorators: [{
|
|
1182
|
+
type: NgModule,
|
|
1183
|
+
args: [{
|
|
1184
|
+
declarations: [
|
|
1185
|
+
IDListComponent
|
|
1186
|
+
],
|
|
1187
|
+
exports: [
|
|
1188
|
+
IDListComponent
|
|
1189
|
+
],
|
|
1190
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1191
|
+
}]
|
|
1192
|
+
}] });
|
|
1193
|
+
|
|
1194
|
+
class IDListItemComponent {
|
|
1195
|
+
constructor() {
|
|
1196
|
+
this.headline = '';
|
|
1197
|
+
this.date = null;
|
|
1198
|
+
this.year = null;
|
|
1199
|
+
this.month = null;
|
|
1200
|
+
this.monthLabel = null;
|
|
1201
|
+
this.day = null;
|
|
1202
|
+
this.showDateLabel = false;
|
|
1203
|
+
}
|
|
1204
|
+
}
|
|
1205
|
+
IDListItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1206
|
+
IDListItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemComponent, selector: "id-list-item", inputs: { headline: "headline", date: "date", year: "year", month: "month", monthLabel: "monthLabel", day: "day", showDateLabel: "showDateLabel" }, ngImport: i0, template: "<ids-list-item\r\n[headline]=\"headline\"\r\n[date]=\"date\"\r\n[year]=\"year\"\r\n[month]=\"month\"\r\n[monthlabel]=\"monthLabel\"\r\n[day]=\"day\"\r\n[showdatelabel]=\"showDateLabel\">\r\n <ng-content></ng-content>\r\n</ids-list-item>", encapsulation: i0.ViewEncapsulation.None });
|
|
1207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, decorators: [{
|
|
1208
|
+
type: Component,
|
|
1209
|
+
args: [{
|
|
1210
|
+
selector: 'id-list-item',
|
|
1211
|
+
templateUrl: './list-item.component.html',
|
|
1212
|
+
encapsulation: ViewEncapsulation.None,
|
|
1213
|
+
}]
|
|
1214
|
+
}], ctorParameters: function () { return []; }, propDecorators: { headline: [{
|
|
1215
|
+
type: Input
|
|
1216
|
+
}], date: [{
|
|
1217
|
+
type: Input
|
|
1218
|
+
}], year: [{
|
|
1219
|
+
type: Input
|
|
1220
|
+
}], month: [{
|
|
1221
|
+
type: Input
|
|
1222
|
+
}], monthLabel: [{
|
|
1223
|
+
type: Input
|
|
1224
|
+
}], day: [{
|
|
1225
|
+
type: Input
|
|
1226
|
+
}], showDateLabel: [{
|
|
1227
|
+
type: Input
|
|
1228
|
+
}] } });
|
|
1229
|
+
|
|
1230
|
+
class IDListItemModule {
|
|
1231
|
+
}
|
|
1232
|
+
IDListItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1233
|
+
IDListItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule, declarations: [IDListItemComponent], exports: [IDListItemComponent] });
|
|
1234
|
+
IDListItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule });
|
|
1235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemModule, decorators: [{
|
|
1236
|
+
type: NgModule,
|
|
1237
|
+
args: [{
|
|
1238
|
+
declarations: [
|
|
1239
|
+
IDListItemComponent
|
|
1240
|
+
],
|
|
1241
|
+
exports: [
|
|
1242
|
+
IDListItemComponent
|
|
1243
|
+
],
|
|
1244
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1245
|
+
}]
|
|
1246
|
+
}] });
|
|
1247
|
+
|
|
1248
|
+
class IDListItemInfoComponent {
|
|
1249
|
+
constructor() { }
|
|
1250
|
+
}
|
|
1251
|
+
IDListItemInfoComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1252
|
+
IDListItemInfoComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemInfoComponent, selector: "id-list-item-info", ngImport: i0, template: "<ids-list-item-info>\r\n <ng-content></ng-content>\r\n</ids-list-item-info>", styles: [":host { display: block; }"] });
|
|
1253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoComponent, decorators: [{
|
|
1254
|
+
type: Component,
|
|
1255
|
+
args: [{
|
|
1256
|
+
selector: 'id-list-item-info',
|
|
1257
|
+
templateUrl: './list-item-info.component.html',
|
|
1258
|
+
styles: [':host { display: block; }']
|
|
1259
|
+
}]
|
|
1260
|
+
}], ctorParameters: function () { return []; } });
|
|
1261
|
+
|
|
1262
|
+
class IDListItemInfoModule {
|
|
1263
|
+
}
|
|
1264
|
+
IDListItemInfoModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1265
|
+
IDListItemInfoModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule, declarations: [IDListItemInfoComponent], exports: [IDListItemInfoComponent] });
|
|
1266
|
+
IDListItemInfoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule });
|
|
1267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemInfoModule, decorators: [{
|
|
1268
|
+
type: NgModule,
|
|
1269
|
+
args: [{
|
|
1270
|
+
declarations: [
|
|
1271
|
+
IDListItemInfoComponent
|
|
1272
|
+
],
|
|
1273
|
+
exports: [
|
|
1274
|
+
IDListItemInfoComponent
|
|
1275
|
+
],
|
|
1276
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1277
|
+
}]
|
|
1278
|
+
}] });
|
|
1279
|
+
|
|
1112
1280
|
class IDNotificationBadgeComponent {
|
|
1113
1281
|
constructor() {
|
|
1114
1282
|
this.size = 'm';
|
|
1115
|
-
this.type = 'information';
|
|
1116
1283
|
}
|
|
1117
1284
|
}
|
|
1118
1285
|
IDNotificationBadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1119
|
-
IDNotificationBadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size"
|
|
1286
|
+
IDNotificationBadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size" }, ngImport: i0, template: "<ids-notification-badge\n [attr.size]=\"size\">\n <ng-content></ng-content>\n</ids-notification-badge>", encapsulation: i0.ViewEncapsulation.None });
|
|
1120
1287
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
|
|
1121
1288
|
type: Component,
|
|
1122
1289
|
args: [{
|
|
@@ -1126,8 +1293,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1126
1293
|
}]
|
|
1127
1294
|
}], ctorParameters: function () { return []; }, propDecorators: { size: [{
|
|
1128
1295
|
type: Input
|
|
1129
|
-
}], type: [{
|
|
1130
|
-
type: Input
|
|
1131
1296
|
}] } });
|
|
1132
1297
|
|
|
1133
1298
|
class IDNotificationBadgeModule {
|
|
@@ -1507,5 +1672,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1507
1672
|
* Generated bundle index. Do not edit.
|
|
1508
1673
|
*/
|
|
1509
1674
|
|
|
1510
|
-
export { IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDErrorMessageComponent, IDErrorMessageModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
|
|
1675
|
+
export { IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDErrorMessageComponent, IDErrorMessageModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDListComponent, IDListItemComponent, IDListItemInfoComponent, IDListItemInfoModule, IDListItemModule, IDListModule, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
|
|
1511
1676
|
//# sourceMappingURL=inera-ids-angular.js.map
|