@inera/ids-angular 1.3.0 → 1.5.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.
Files changed (41) hide show
  1. package/bundles/inera-ids-angular.umd.js +289 -8
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/components/date-label/date-label.component.js +32 -0
  4. package/esm2015/lib/components/date-label/date-label.module.js +22 -0
  5. package/esm2015/lib/components/footer/footer.component.js +1 -1
  6. package/esm2015/lib/components/header/header.component.js +1 -1
  7. package/esm2015/lib/components/link/link.component.js +1 -1
  8. package/esm2015/lib/components/list/item/info/list-item-info.component.js +16 -0
  9. package/esm2015/lib/components/list/item/info/list-item-info.module.js +21 -0
  10. package/esm2015/lib/components/list/item/list-item.component.js +38 -0
  11. package/esm2015/lib/components/list/item/list-item.module.js +21 -0
  12. package/esm2015/lib/components/list/list.component.js +16 -0
  13. package/esm2015/lib/components/list/list.module.js +22 -0
  14. package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +1 -1
  15. package/esm2015/lib/components/notification/badge/notification-badge.component.js +2 -5
  16. package/esm2015/lib/components/tabs/panel/tab-panel.component.js +18 -0
  17. package/esm2015/lib/components/tabs/tab/tab.component.js +27 -0
  18. package/esm2015/lib/components/tabs/tabs.component.js +15 -0
  19. package/esm2015/lib/components/tabs/tabs.module.js +35 -0
  20. package/esm2015/public-api.js +16 -1
  21. package/fesm2015/inera-ids-angular.js +252 -5
  22. package/fesm2015/inera-ids-angular.js.map +1 -1
  23. package/lib/components/date-label/date-label.component.d.ts +11 -0
  24. package/lib/components/date-label/date-label.module.d.ts +8 -0
  25. package/lib/components/footer/footer.component.d.ts +1 -1
  26. package/lib/components/header/header.component.d.ts +4 -1
  27. package/lib/components/link/link.component.d.ts +2 -1
  28. package/lib/components/list/item/info/list-item-info.component.d.ts +6 -0
  29. package/lib/components/list/item/info/list-item-info.module.d.ts +7 -0
  30. package/lib/components/list/item/list-item.component.d.ts +13 -0
  31. package/lib/components/list/item/list-item.module.d.ts +7 -0
  32. package/lib/components/list/list.component.d.ts +6 -0
  33. package/lib/components/list/list.module.d.ts +8 -0
  34. package/lib/components/mobile/menu/mobile-menu.component.d.ts +1 -1
  35. package/lib/components/notification/badge/notification-badge.component.d.ts +1 -2
  36. package/lib/components/tabs/panel/tab-panel.component.d.ts +8 -0
  37. package/lib/components/tabs/tab/tab.component.d.ts +11 -0
  38. package/lib/components/tabs/tabs.component.d.ts +6 -0
  39. package/lib/components/tabs/tabs.module.d.ts +12 -0
  40. package/package.json +2 -2
  41. package/public-api.d.ts +12 -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';
@@ -25,10 +26,12 @@ import * as i1 from '@angular/platform-browser';
25
26
  import * as i3 from '@angular/router';
26
27
  import { RouterModule } from '@angular/router';
27
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';
31
33
  import '@inera/ids-core/components/header/register';
34
+ import '@inera/ids-core/components/tabs/register';
32
35
 
33
36
  class IDAlertComponent {
34
37
  constructor() {
@@ -227,6 +230,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
227
230
  }]
228
231
  }] });
229
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
+
230
281
  class IDIcon {
231
282
  constructor(_props) {
232
283
  this._props = _props;
@@ -1108,14 +1159,131 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1108
1159
  }]
1109
1160
  }] });
1110
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
+
1111
1280
  class IDNotificationBadgeComponent {
1112
1281
  constructor() {
1113
1282
  this.size = 'm';
1114
- this.type = 'information';
1115
1283
  }
1116
1284
  }
1117
1285
  IDNotificationBadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1118
- IDNotificationBadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { size: "size", type: "type" }, ngImport: i0, template: "<ids-notification-badge \n [attr.type]=\"type\"\n [attr.size]=\"size\">\n <ng-content></ng-content>\n</ids-notification-badge>", encapsulation: i0.ViewEncapsulation.None });
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 });
1119
1287
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
1120
1288
  type: Component,
1121
1289
  args: [{
@@ -1125,8 +1293,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1125
1293
  }]
1126
1294
  }], ctorParameters: function () { return []; }, propDecorators: { size: [{
1127
1295
  type: Input
1128
- }], type: [{
1129
- type: Input
1130
1296
  }] } });
1131
1297
 
1132
1298
  class IDNotificationBadgeModule {
@@ -1417,6 +1583,87 @@ class IDHeaderNavItem {
1417
1583
  }
1418
1584
  }
1419
1585
 
1586
+ class IDTabsComponent {
1587
+ constructor() { }
1588
+ }
1589
+ IDTabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1590
+ IDTabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabsComponent, selector: "id-tabs", ngImport: i0, template: "<ids-tabs>\n <ng-content></ng-content>\n</ids-tabs>" });
1591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsComponent, decorators: [{
1592
+ type: Component,
1593
+ args: [{
1594
+ selector: 'id-tabs',
1595
+ templateUrl: './tabs.component.html'
1596
+ }]
1597
+ }], ctorParameters: function () { return []; } });
1598
+
1599
+ class IDTabPanelComponent {
1600
+ constructor(elementRef) {
1601
+ this.elementRef = elementRef;
1602
+ elementRef.nativeElement.setAttribute('slot', 'tab-panel');
1603
+ }
1604
+ }
1605
+ IDTabPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1606
+ IDTabPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", ngImport: i0, template: "<ids-tab-panel>\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
1607
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, decorators: [{
1608
+ type: Component,
1609
+ args: [{
1610
+ selector: 'id-tab-panel',
1611
+ templateUrl: './tab-panel.component.html'
1612
+ }]
1613
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
1614
+
1615
+ class IDTabComponent {
1616
+ constructor(elementRef) {
1617
+ this.elementRef = elementRef;
1618
+ this.label = '';
1619
+ this.icon = '';
1620
+ this.selected = false;
1621
+ elementRef.nativeElement.setAttribute('slot', 'tab');
1622
+ }
1623
+ }
1624
+ IDTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1625
+ IDTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { label: "label", icon: "icon", selected: "selected" }, ngImport: i0, template: "<ids-tab\n [label]=\"label\"\n [attr.icon]=\"icon\"\n [attr.selected]=\"selected ? '':null\">\n</ids-tab>" });
1626
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, decorators: [{
1627
+ type: Component,
1628
+ args: [{
1629
+ selector: 'id-tab',
1630
+ templateUrl: './tab.component.html'
1631
+ }]
1632
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { label: [{
1633
+ type: Input
1634
+ }], icon: [{
1635
+ type: Input
1636
+ }], selected: [{
1637
+ type: Input
1638
+ }] } });
1639
+
1640
+ class IDTabsModule {
1641
+ }
1642
+ IDTabsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1643
+ IDTabsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, declarations: [IDTabsComponent,
1644
+ IDTabComponent,
1645
+ IDTabPanelComponent], imports: [CommonModule], exports: [IDTabsComponent,
1646
+ IDTabComponent,
1647
+ IDTabPanelComponent] });
1648
+ IDTabsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, imports: [[CommonModule]] });
1649
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabsModule, decorators: [{
1650
+ type: NgModule,
1651
+ args: [{
1652
+ declarations: [
1653
+ IDTabsComponent,
1654
+ IDTabComponent,
1655
+ IDTabPanelComponent
1656
+ ],
1657
+ imports: [CommonModule],
1658
+ exports: [
1659
+ IDTabsComponent,
1660
+ IDTabComponent,
1661
+ IDTabPanelComponent
1662
+ ],
1663
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1664
+ }]
1665
+ }] });
1666
+
1420
1667
  /*
1421
1668
  * Public API Surface of ids-angular
1422
1669
  */
@@ -1425,5 +1672,5 @@ class IDHeaderNavItem {
1425
1672
  * Generated bundle index. Do not edit.
1426
1673
  */
1427
1674
 
1428
- 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, 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 };
1429
1676
  //# sourceMappingURL=inera-ids-angular.js.map