@inera/ids-angular 1.11.3 → 1.12.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.
Files changed (28) hide show
  1. package/bundles/inera-ids-angular.umd.js +101 -49
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/classes/link/IDLink.js +9 -11
  4. package/esm2015/lib/classes/link/IDLinkFunction.js +7 -7
  5. package/esm2015/lib/classes/link/IDLinkProp.js +2 -0
  6. package/esm2015/lib/classes/link/IDLinkRoute.js +10 -13
  7. package/esm2015/lib/classes/link/IDLinkWeb.js +8 -10
  8. package/esm2015/lib/components/agent/agent.component.js +2 -2
  9. package/esm2015/lib/components/card/card.component.js +4 -4
  10. package/esm2015/lib/components/expandable/expandable.component.js +29 -0
  11. package/esm2015/lib/components/expandable/expandable.module.js +22 -0
  12. package/esm2015/lib/components/footer/footer.component.js +11 -2
  13. package/esm2015/lib/components/icon/icon.component.js +5 -2
  14. package/esm2015/lib/internals/anchor.component.js +2 -2
  15. package/esm2015/public-api.js +5 -1
  16. package/fesm2015/inera-ids-angular.js +95 -44
  17. package/fesm2015/inera-ids-angular.js.map +1 -1
  18. package/lib/classes/link/IDLink.d.ts +3 -4
  19. package/lib/classes/link/IDLinkFunction.d.ts +4 -4
  20. package/lib/classes/link/IDLinkProp.d.ts +12 -0
  21. package/lib/classes/link/IDLinkRoute.d.ts +4 -7
  22. package/lib/classes/link/IDLinkWeb.d.ts +4 -5
  23. package/lib/components/expandable/expandable.component.d.ts +10 -0
  24. package/lib/components/expandable/expandable.module.d.ts +8 -0
  25. package/lib/components/footer/footer.component.d.ts +4 -1
  26. package/lib/components/icon/icon.component.d.ts +2 -1
  27. package/package.json +2 -2
  28. package/public-api.d.ts +3 -0
@@ -14,6 +14,7 @@ import '@inera/ids-core/components/breadcrumbs/register';
14
14
  import '@inera/ids-core/components/card/register';
15
15
  import '@inera/ids-core/components/date-label/register';
16
16
  import '@inera/ids-core/components/dialog/register';
17
+ import '@inera/ids-core/components/expandable/register';
17
18
  import '@inera/ids-core/components/icon/register';
18
19
  import '@inera/ids-core/components/form/input/register';
19
20
  import '@inera/ids-core/components/form/checkbox/register';
@@ -151,7 +152,7 @@ class IDAgentComponent {
151
152
  }
152
153
  }
153
154
  IDAgentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
154
- IDAgentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAgentComponent, selector: "id-agent", inputs: { expanded: "expanded", headline: "headline", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0, template: "<ids-agent\r\n [showtext]=\"showText\"\r\n [hidetext]=\"hideText\"\r\n [expanded]=\"expanded\"\r\n (didToggleExpansion)=\"didToggleExpansion.emit(true)\">\r\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\r\n {{headline}}\r\n </h3>\r\n <ng-content></ng-content>\r\n</ids-agent>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
155
+ IDAgentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAgentComponent, selector: "id-agent", inputs: { expanded: "expanded", headline: "headline", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0, template: "<ids-agent\r\n [headline]=\"headline\"\r\n [showtext]=\"showText\"\r\n [hidetext]=\"hideText\"\r\n [expanded]=\"expanded\"\r\n (didToggleExpansion)=\"didToggleExpansion.emit(true)\">\r\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\r\n {{headline}}\r\n </h3>\r\n <ng-content></ng-content>\r\n</ids-agent>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
155
156
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, decorators: [{
156
157
  type: Component,
157
158
  args: [{
@@ -297,96 +298,89 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
297
298
  }] });
298
299
 
299
300
  class IDLink {
300
- constructor(_label, _id, _classes) {
301
- this._label = _label;
302
- this._id = _id;
303
- this._classes = _classes;
301
+ constructor(_props) {
302
+ this._props = _props;
304
303
  }
305
304
  get label() {
306
- return this._label;
305
+ return this._props.label;
307
306
  }
308
307
  get id() {
309
- return this._id;
308
+ return this._props.id;
310
309
  }
311
310
  get classes() {
312
- return this._classes;
311
+ return this._props.classes;
313
312
  }
314
313
  set label(label) {
315
- this._label = label;
314
+ this._props.label = label;
316
315
  }
317
316
  set id(id) {
318
- this._id = id;
317
+ this._props.id = id;
319
318
  }
320
319
  set classes(classes) {
321
- this._classes = classes;
320
+ this._props.classes = classes;
322
321
  }
323
322
  }
324
323
 
325
324
  class IDLinkFunction extends IDLink {
326
- constructor(_label, _action, _id, _classes) {
327
- super(_label, _id, _classes);
328
- this._action = _action;
325
+ constructor(_props) {
326
+ super(_props);
329
327
  }
330
328
  get action() {
331
- return this._action;
329
+ return this._props.action;
332
330
  }
333
331
  set action(action) {
334
- this._action = action;
332
+ this._props.action = action;
335
333
  }
336
334
  click() {
337
- this._action();
335
+ var _a;
336
+ (_a = this.action) === null || _a === void 0 ? void 0 : _a.call(this);
338
337
  }
339
338
  }
340
339
 
341
340
  class IDLinkRoute extends IDLink {
342
- constructor(_label, _route, _queries = {}, router, _id, _classes) {
343
- super(_label, _id, _classes);
344
- this._route = _route;
345
- this._queries = _queries;
346
- this.router = router;
341
+ constructor(_props) {
342
+ super(_props);
347
343
  }
348
344
  get route() {
349
- return this._route;
345
+ return this._props.route;
350
346
  }
351
347
  set route(route) {
352
- this._route = route;
348
+ this._props.route = route;
353
349
  }
354
350
  get queries() {
355
- return this._queries;
351
+ return this._props.queries;
356
352
  }
357
353
  set queries(_queries) {
358
- this._queries = _queries;
354
+ this._props.queries = _queries;
359
355
  }
360
356
  click() {
361
- if (this.router) {
362
- this.router.navigate([this.route]);
357
+ if (this._props.router) {
358
+ this._props.router.navigate([this.route]);
363
359
  }
364
360
  else {
365
- console.error('No router supplied in IcLinkRoute Object');
361
+ console.error('No router supplied in IDLinkRoute Object');
366
362
  }
367
363
  }
368
364
  }
369
365
 
370
366
  class IDLinkWeb extends IDLink {
371
- constructor(_label, _url, _target, _id, _classes) {
372
- super(_label, _id, _classes);
373
- this._url = _url;
374
- this._target = _target;
367
+ constructor(_props) {
368
+ super(_props);
375
369
  }
376
370
  get target() {
377
- return this._target;
371
+ return this._props.target;
378
372
  }
379
373
  set target(target) {
380
- this._target = target;
374
+ this._props.target = target;
381
375
  }
382
376
  get url() {
383
- return this._url;
377
+ return this._props.url;
384
378
  }
385
379
  set url(url) {
386
- this._url = url;
380
+ this._props.url = url;
387
381
  }
388
382
  click() {
389
- window.open(this._url, this.target);
383
+ window.open(this._props.url, this.target);
390
384
  }
391
385
  }
392
386
 
@@ -443,7 +437,7 @@ class IDAnchorComponent {
443
437
  }
444
438
  }
445
439
  IDAnchorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorComponent, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component });
446
- IDAnchorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAnchorComponent, selector: "id-anchor", inputs: { link: "link", contextClasses: "contextClasses" }, usesOnChanges: true, ngImport: i0, template: "<a *ngIf=\"isLinkRoute\" \n [attr.id]=\"linkRoute.id\"\n [class]=\"classes\" \n [routerLink]=\"linkRoute.route\"\n routerLinkActive=\"selected\"\n [queryParams]=\"linkRoute.queries\">\n {{linkRoute.label}}\n</a>\n<a *ngIf=\"isLinkWeb\" \n [attr.id]=\"linkWeb.id\"\n [class]=\"classes\" \n [href]=\"linkWeb.url\"\n [class.ic-link--external]=\"isLinkExternal\"\n [attr.target]=\"linkWeb.target\"\n [attr.rel]=\"isLinkExternal ? 'noopener' : null\">\n {{linkWeb.label}}\n</a>\n<a *ngIf=\"isLinkFunction\" \n [attr.id]=\"linkFunction.id\"\n [class]=\"classes\" \n [attr.href]=\"scriptHref\"\n (click)=\"linkFunction.action()\">\n {{linkFunction.label}}\n</a>", styles: ["a { color: inherit; text-decoration: inherit; font-size: inherit }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }, { type: i3.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "routerLinkActive"], exportAs: ["routerLinkActive"] }] });
440
+ IDAnchorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAnchorComponent, selector: "id-anchor", inputs: { link: "link", contextClasses: "contextClasses" }, usesOnChanges: true, ngImport: i0, template: "<a *ngIf=\"isLinkRoute\" \n [attr.id]=\"linkRoute.id\"\n [class]=\"classes\" \n [routerLink]=\"linkRoute.route\"\n routerLinkActive=\"selected\"\n [queryParams]=\"linkRoute.queries\">\n {{linkRoute.label}}\n</a>\n<a *ngIf=\"isLinkWeb\" \n [attr.id]=\"linkWeb.id\"\n [class]=\"classes\" \n [href]=\"linkWeb.url\"\n [attr.target]=\"linkWeb.target\"\n [attr.rel]=\"isLinkExternal ? 'noopener' : null\">\n {{linkWeb.label}}\n</a>\n<a *ngIf=\"isLinkFunction\" \n [attr.id]=\"linkFunction.id\"\n [class]=\"classes\" \n [attr.href]=\"scriptHref\"\n (click)=\"linkFunction.click()\">\n {{linkFunction.label}}\n</a>", styles: ["a { color: inherit; text-decoration: inherit; font-size: inherit }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }, { type: i3.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "routerLinkActive"], exportAs: ["routerLinkActive"] }] });
447
441
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAnchorComponent, decorators: [{
448
442
  type: Component,
449
443
  args: [{
@@ -539,13 +533,13 @@ class IDCardComponent {
539
533
  }
540
534
  }
541
535
  IDCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
542
- IDCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { fill: "fill" }, ngImport: i0, template: "<ids-card \r\n [fill]=\"fill\">\r\n <ng-content></ng-content>\r\n</ids-card>", encapsulation: i0.ViewEncapsulation.None });
536
+ IDCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { fill: "fill" }, ngImport: i0, template: "<ids-card \r\n [fill]=\"fill\">\r\n <ng-content></ng-content>\r\n</ids-card>", styles: [":host { display: block; }"] });
543
537
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, decorators: [{
544
538
  type: Component,
545
539
  args: [{
546
540
  selector: 'id-card',
547
541
  templateUrl: './card.component.html',
548
- encapsulation: ViewEncapsulation.None,
542
+ styles: [':host { display: block; }'],
549
543
  }]
550
544
  }], ctorParameters: function () { return []; }, propDecorators: { fill: [{
551
545
  type: Input
@@ -692,6 +686,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
692
686
  }]
693
687
  }] });
694
688
 
689
+ class IDExpandableComponent {
690
+ constructor() {
691
+ this.borderless = false;
692
+ this.expanded = false;
693
+ this.headline = '';
694
+ this.variation = "1";
695
+ }
696
+ }
697
+ IDExpandableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
698
+ IDExpandableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDExpandableComponent, selector: "id-expandable", inputs: { borderless: "borderless", expanded: "expanded", headline: "headline", variation: "variation" }, ngImport: i0, template: "<ids-expandable [attr.borderless]=\"borderless ? true : null\" [expanded]=\"expanded\" [headline]=\"headline\" [variation]=\"variation\">\r\n <ng-content></ng-content>\r\n</ids-expandable>", encapsulation: i0.ViewEncapsulation.None });
699
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableComponent, decorators: [{
700
+ type: Component,
701
+ args: [{
702
+ selector: 'id-expandable',
703
+ templateUrl: './expandable.component.html',
704
+ encapsulation: ViewEncapsulation.None,
705
+ }]
706
+ }], ctorParameters: function () { return []; }, propDecorators: { borderless: [{
707
+ type: Input
708
+ }], expanded: [{
709
+ type: Input
710
+ }], headline: [{
711
+ type: Input
712
+ }], variation: [{
713
+ type: Input
714
+ }] } });
715
+
716
+ class IDExpandableModule {
717
+ }
718
+ IDExpandableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
719
+ IDExpandableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableModule, declarations: [IDExpandableComponent], exports: [IDExpandableComponent] });
720
+ IDExpandableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableModule });
721
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableModule, decorators: [{
722
+ type: NgModule,
723
+ args: [{
724
+ declarations: [
725
+ IDExpandableComponent
726
+ ],
727
+ exports: [
728
+ IDExpandableComponent
729
+ ],
730
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
731
+ }]
732
+ }] });
733
+
695
734
  class IDIcon {
696
735
  constructor(_props) {
697
736
  this._props = _props;
@@ -728,6 +767,7 @@ class IDIcon {
728
767
  class IDIconComponent {
729
768
  constructor() {
730
769
  this.name = undefined;
770
+ this.rotate = undefined;
731
771
  this.color = undefined;
732
772
  this.color2 = undefined;
733
773
  this.colorpreset = undefined;
@@ -738,7 +778,7 @@ class IDIconComponent {
738
778
  }
739
779
  }
740
780
  IDIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
741
- IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \n [name]=\"name\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\"\n [colorpreset]=\"colorpreset\">\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
781
+ IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", rotate: "rotate", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \n [name]=\"name\"\n [rotate]=\"rotate\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\"\n [colorpreset]=\"colorpreset\">\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
742
782
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, decorators: [{
743
783
  type: Component,
744
784
  args: [{
@@ -748,6 +788,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
748
788
  }]
749
789
  }], ctorParameters: function () { return []; }, propDecorators: { name: [{
750
790
  type: Input
791
+ }], rotate: [{
792
+ type: Input
751
793
  }], color: [{
752
794
  type: Input
753
795
  }], color2: [{
@@ -1711,11 +1753,14 @@ class IDFooterComponent {
1711
1753
  this.headline = '';
1712
1754
  this.servicename = '';
1713
1755
  this.subheadline = '';
1756
+ this.linkcol1 = '2';
1757
+ this.linkcol2 = '2';
1758
+ this.linkcol3 = '2';
1714
1759
  this.mobileMenuItems = undefined;
1715
1760
  }
1716
1761
  }
1717
1762
  IDFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1718
- IDFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDFooterComponent, selector: "id-footer", inputs: { type: "type", headline: "headline", servicename: "servicename", subheadline: "subheadline", mobileMenuItems: "mobileMenuItems" }, ngImport: i0, template: "<ids-footer \n [type]=\"type\"\n [headline]=\"headline\"\n [subheadline]=\"subheadline\"\n [servicename]=\"servicename\">\n <ng-content></ng-content>\n <ids-mobile-menu \n *ngIf=\"mobileMenuItems\"\n [type]=\"type\">\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu>\n</ids-footer>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1763
+ IDFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDFooterComponent, selector: "id-footer", inputs: { type: "type", headline: "headline", servicename: "servicename", subheadline: "subheadline", linkcol1: "linkcol1", linkcol2: "linkcol2", linkcol3: "linkcol3", mobileMenuItems: "mobileMenuItems" }, ngImport: i0, template: "<ids-footer \n [type]=\"type\"\n [headline]=\"headline\"\n [subheadline]=\"subheadline\"\n [servicename]=\"servicename\"\n [linkcol1]=\"linkcol1\"\n [linkcol2]=\"linkcol2\"\n [linkcol3]=\"linkcol3\">\n <ng-content></ng-content>\n <ids-mobile-menu \n slot=\"mobile-menu\"\n variation=\"2\"\n *ngIf=\"mobileMenuItems\"\n [type]=\"type\">\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu>\n</ids-footer>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1719
1764
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, decorators: [{
1720
1765
  type: Component,
1721
1766
  args: [{
@@ -1730,6 +1775,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1730
1775
  type: Input
1731
1776
  }], subheadline: [{
1732
1777
  type: Input
1778
+ }], linkcol1: [{
1779
+ type: Input
1780
+ }], linkcol2: [{
1781
+ type: Input
1782
+ }], linkcol3: [{
1783
+ type: Input
1733
1784
  }], mobileMenuItems: [{
1734
1785
  type: Input
1735
1786
  }] } });
@@ -1989,5 +2040,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1989
2040
  * Generated bundle index. Do not edit.
1990
2041
  */
1991
2042
 
1992
- export { IDAgentComponent, IDAgentModule, IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, 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 };
2043
+ export { IDAgentComponent, IDAgentModule, IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, IDErrorMessageComponent, IDErrorMessageModule, IDExpandableComponent, IDExpandableModule, 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 };
1993
2044
  //# sourceMappingURL=inera-ids-angular.js.map