@oiz/stzh-components-angular 3.4.0-beta2 → 3.5.0-beta1
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/esm2022/lib/stencil-generated/index.mjs +10 -1
- package/esm2022/lib/stencil-generated/proxies.mjs +265 -47
- package/esm2022/stzh-components-angular.module.mjs +3 -3
- package/fesm2022/oiz-stzh-components-angular.mjs +276 -49
- package/fesm2022/oiz-stzh-components-angular.mjs.map +1 -1
- package/lib/stencil-generated/index.d.ts +1 -1
- package/lib/stencil-generated/proxies.d.ts +110 -14
- package/package.json +2 -2
- package/stzh-components-angular.module.d.ts +1 -1
|
@@ -387,6 +387,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
387
387
|
inputs: ['hideClose', 'label', 'localization'],
|
|
388
388
|
}]
|
|
389
389
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
390
|
+
let StzhBathstatusItem = class StzhBathstatusItem {
|
|
391
|
+
constructor(c, r, z) {
|
|
392
|
+
this.z = z;
|
|
393
|
+
c.detach();
|
|
394
|
+
this.el = r.nativeElement;
|
|
395
|
+
}
|
|
396
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBathstatusItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
397
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhBathstatusItem, selector: "stzh-bathstatus-item", inputs: { dateAdapter: "dateAdapter", item: "item", localization: "localization", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
398
|
+
};
|
|
399
|
+
StzhBathstatusItem = __decorate([
|
|
400
|
+
ProxyCmp({
|
|
401
|
+
inputs: ['dateAdapter', 'item', 'localization', 'variant']
|
|
402
|
+
})
|
|
403
|
+
], StzhBathstatusItem);
|
|
404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBathstatusItem, decorators: [{
|
|
405
|
+
type: Component,
|
|
406
|
+
args: [{
|
|
407
|
+
selector: 'stzh-bathstatus-item',
|
|
408
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
409
|
+
template: '<ng-content></ng-content>',
|
|
410
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
411
|
+
inputs: ['dateAdapter', 'item', 'localization', 'variant'],
|
|
412
|
+
}]
|
|
413
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
414
|
+
let StzhBathstatusList = class StzhBathstatusList {
|
|
415
|
+
constructor(c, r, z) {
|
|
416
|
+
this.z = z;
|
|
417
|
+
c.detach();
|
|
418
|
+
this.el = r.nativeElement;
|
|
419
|
+
}
|
|
420
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBathstatusList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
421
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhBathstatusList, selector: "stzh-bathstatus-list", inputs: { api: "api", localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
422
|
+
};
|
|
423
|
+
StzhBathstatusList = __decorate([
|
|
424
|
+
ProxyCmp({
|
|
425
|
+
inputs: ['api', 'localization']
|
|
426
|
+
})
|
|
427
|
+
], StzhBathstatusList);
|
|
428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBathstatusList, decorators: [{
|
|
429
|
+
type: Component,
|
|
430
|
+
args: [{
|
|
431
|
+
selector: 'stzh-bathstatus-list',
|
|
432
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
433
|
+
template: '<ng-content></ng-content>',
|
|
434
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
435
|
+
inputs: ['api', 'localization'],
|
|
436
|
+
}]
|
|
437
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
390
438
|
let StzhBreadcrumb = class StzhBreadcrumb {
|
|
391
439
|
constructor(c, r, z) {
|
|
392
440
|
this.z = z;
|
|
@@ -543,11 +591,11 @@ let StzhCardSearchresult = class StzhCardSearchresult {
|
|
|
543
591
|
proxyOutputs(this, this.el, ['stzhClick']);
|
|
544
592
|
}
|
|
545
593
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardSearchresult, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
546
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardSearchresult, selector: "stzh-card-searchresult", inputs: { analyticsId: "analyticsId", breadcrumbItems: "breadcrumbItems", datalistItems: "datalistItems", dateAdapter: "dateAdapter", dateline: "dateline", description: "description", download: "download", downloadHeading: "downloadHeading", downloadMeta: "downloadMeta", eventDateEnd: "eventDateEnd", eventDateStart: "eventDateStart", eventLocation: "eventLocation", heading: "heading", headingLevel: "headingLevel", href: "href", hyphensEnabled: "hyphensEnabled", imagePosition: "imagePosition", localization: "localization", meta: "meta", service: "service", tag: "tag", target: "target", topic: "topic" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
594
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardSearchresult, selector: "stzh-card-searchresult", inputs: { analyticsId: "analyticsId", breadcrumbItems: "breadcrumbItems", datalistItems: "datalistItems", dateAdapter: "dateAdapter", dateline: "dateline", description: "description", download: "download", downloadHeading: "downloadHeading", downloadMeta: "downloadMeta", eventDateEnd: "eventDateEnd", eventDateStart: "eventDateStart", eventLocation: "eventLocation", heading: "heading", headingLevel: "headingLevel", href: "href", hyphensEnabled: "hyphensEnabled", imagePosition: "imagePosition", localization: "localization", meta: "meta", placeholderImageEnabled: "placeholderImageEnabled", service: "service", tag: "tag", target: "target", topic: "topic" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
547
595
|
};
|
|
548
596
|
StzhCardSearchresult = __decorate([
|
|
549
597
|
ProxyCmp({
|
|
550
|
-
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'localization', 'meta', 'service', 'tag', 'target', 'topic']
|
|
598
|
+
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'localization', 'meta', 'placeholderImageEnabled', 'service', 'tag', 'target', 'topic']
|
|
551
599
|
})
|
|
552
600
|
], StzhCardSearchresult);
|
|
553
601
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardSearchresult, decorators: [{
|
|
@@ -557,7 +605,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
557
605
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
558
606
|
template: '<ng-content></ng-content>',
|
|
559
607
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
560
|
-
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'localization', 'meta', 'service', 'tag', 'target', 'topic'],
|
|
608
|
+
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'localization', 'meta', 'placeholderImageEnabled', 'service', 'tag', 'target', 'topic'],
|
|
561
609
|
}]
|
|
562
610
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
563
611
|
let StzhCardSuperteaser = class StzhCardSuperteaser {
|
|
@@ -568,11 +616,11 @@ let StzhCardSuperteaser = class StzhCardSuperteaser {
|
|
|
568
616
|
proxyOutputs(this, this.el, ['stzhClick']);
|
|
569
617
|
}
|
|
570
618
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardSuperteaser, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
571
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardSuperteaser, selector: "stzh-card-superteaser", inputs: { analyticsId: "analyticsId", breadcrumbItems: "breadcrumbItems", datalistItems: "datalistItems", dateAdapter: "dateAdapter", dateline: "dateline", description: "description", download: "download", downloadHeading: "downloadHeading", downloadMeta: "downloadMeta", eventDateEnd: "eventDateEnd", eventDateStart: "eventDateStart", eventLocation: "eventLocation", heading: "heading", headingLevel: "headingLevel", href: "href", hyphensEnabled: "hyphensEnabled", imagePosition: "imagePosition", localization: "localization", meta: "meta", service: "service", tag: "tag", target: "target", topic: "topic" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
619
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardSuperteaser, selector: "stzh-card-superteaser", inputs: { analyticsId: "analyticsId", breadcrumbItems: "breadcrumbItems", datalistItems: "datalistItems", dateAdapter: "dateAdapter", dateline: "dateline", description: "description", download: "download", downloadHeading: "downloadHeading", downloadMeta: "downloadMeta", eventDateEnd: "eventDateEnd", eventDateStart: "eventDateStart", eventLocation: "eventLocation", heading: "heading", headingLevel: "headingLevel", href: "href", hyphensEnabled: "hyphensEnabled", imagePosition: "imagePosition", isOnHomepage: "isOnHomepage", localization: "localization", meta: "meta", placeholderImageEnabled: "placeholderImageEnabled", service: "service", tag: "tag", target: "target", topic: "topic" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
572
620
|
};
|
|
573
621
|
StzhCardSuperteaser = __decorate([
|
|
574
622
|
ProxyCmp({
|
|
575
|
-
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'localization', 'meta', 'service', 'tag', 'target', 'topic']
|
|
623
|
+
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'isOnHomepage', 'localization', 'meta', 'placeholderImageEnabled', 'service', 'tag', 'target', 'topic']
|
|
576
624
|
})
|
|
577
625
|
], StzhCardSuperteaser);
|
|
578
626
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardSuperteaser, decorators: [{
|
|
@@ -582,7 +630,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
582
630
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
583
631
|
template: '<ng-content></ng-content>',
|
|
584
632
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
585
|
-
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'localization', 'meta', 'service', 'tag', 'target', 'topic'],
|
|
633
|
+
inputs: ['analyticsId', 'breadcrumbItems', 'datalistItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'hyphensEnabled', 'imagePosition', 'isOnHomepage', 'localization', 'meta', 'placeholderImageEnabled', 'service', 'tag', 'target', 'topic'],
|
|
586
634
|
}]
|
|
587
635
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
588
636
|
let StzhCardlist = class StzhCardlist {
|
|
@@ -593,11 +641,11 @@ let StzhCardlist = class StzhCardlist {
|
|
|
593
641
|
proxyOutputs(this, this.el, ['stzhCollapseAll']);
|
|
594
642
|
}
|
|
595
643
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardlist, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
596
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardlist, selector: "stzh-cardlist", inputs: { description: "description", layout: "layout", localization: "localization", showToggleLink: "showToggleLink", sortableDataIdAttribute: "sortableDataIdAttribute", sortableEnabled: "sortableEnabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
644
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardlist, selector: "stzh-cardlist", inputs: { description: "description", layout: "layout", localization: "localization", max3Columns: "max3Columns", showToggleLink: "showToggleLink", sortableDataIdAttribute: "sortableDataIdAttribute", sortableEnabled: "sortableEnabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
597
645
|
};
|
|
598
646
|
StzhCardlist = __decorate([
|
|
599
647
|
ProxyCmp({
|
|
600
|
-
inputs: ['description', 'layout', 'localization', 'showToggleLink', 'sortableDataIdAttribute', 'sortableEnabled']
|
|
648
|
+
inputs: ['description', 'layout', 'localization', 'max3Columns', 'showToggleLink', 'sortableDataIdAttribute', 'sortableEnabled']
|
|
601
649
|
})
|
|
602
650
|
], StzhCardlist);
|
|
603
651
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardlist, decorators: [{
|
|
@@ -607,7 +655,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
607
655
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
608
656
|
template: '<ng-content></ng-content>',
|
|
609
657
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
610
|
-
inputs: ['description', 'layout', 'localization', 'showToggleLink', 'sortableDataIdAttribute', 'sortableEnabled'],
|
|
658
|
+
inputs: ['description', 'layout', 'localization', 'max3Columns', 'showToggleLink', 'sortableDataIdAttribute', 'sortableEnabled'],
|
|
611
659
|
}]
|
|
612
660
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
613
661
|
let StzhCarousel = class StzhCarousel {
|
|
@@ -832,6 +880,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
832
880
|
inputs: ['clamped', 'expanded', 'lines', 'linesLarge', 'linesMedium', 'linesSmall', 'linesUltra', 'localization', 'showExpandLink'],
|
|
833
881
|
}]
|
|
834
882
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
883
|
+
let StzhCompanyLogo = class StzhCompanyLogo {
|
|
884
|
+
constructor(c, r, z) {
|
|
885
|
+
this.z = z;
|
|
886
|
+
c.detach();
|
|
887
|
+
this.el = r.nativeElement;
|
|
888
|
+
}
|
|
889
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCompanyLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
890
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCompanyLogo, selector: "stzh-company-logo", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
891
|
+
};
|
|
892
|
+
StzhCompanyLogo = __decorate([
|
|
893
|
+
ProxyCmp({})
|
|
894
|
+
], StzhCompanyLogo);
|
|
895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCompanyLogo, decorators: [{
|
|
896
|
+
type: Component,
|
|
897
|
+
args: [{
|
|
898
|
+
selector: 'stzh-company-logo',
|
|
899
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
900
|
+
template: '<ng-content></ng-content>',
|
|
901
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
902
|
+
inputs: [],
|
|
903
|
+
}]
|
|
904
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
835
905
|
let StzhContact = class StzhContact {
|
|
836
906
|
constructor(c, r, z) {
|
|
837
907
|
this.z = z;
|
|
@@ -982,14 +1052,14 @@ let StzhDatalist = class StzhDatalist {
|
|
|
982
1052
|
this.z = z;
|
|
983
1053
|
c.detach();
|
|
984
1054
|
this.el = r.nativeElement;
|
|
985
|
-
proxyOutputs(this, this.el, ['stzhVariantChange', 'stzhDirectionChange']);
|
|
1055
|
+
proxyOutputs(this, this.el, ['stzhVariantChange', 'stzhBigLabelChange', 'stzhDirectionChange']);
|
|
986
1056
|
}
|
|
987
1057
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatalist, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
988
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatalist, selector: "stzh-datalist", inputs: { columns: "columns", columnsLarge: "columnsLarge", columnsMedium: "columnsMedium", columnsSmall: "columnsSmall", columnsUltra: "columnsUltra", direction: "direction", directionLarge: "directionLarge", directionMedium: "directionMedium", directionSmall: "directionSmall", directionUltra: "directionUltra", items: "items", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1058
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatalist, selector: "stzh-datalist", inputs: { bigLabel: "bigLabel", columns: "columns", columnsLarge: "columnsLarge", columnsMedium: "columnsMedium", columnsSmall: "columnsSmall", columnsUltra: "columnsUltra", direction: "direction", directionLarge: "directionLarge", directionMedium: "directionMedium", directionSmall: "directionSmall", directionUltra: "directionUltra", items: "items", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
989
1059
|
};
|
|
990
1060
|
StzhDatalist = __decorate([
|
|
991
1061
|
ProxyCmp({
|
|
992
|
-
inputs: ['columns', 'columnsLarge', 'columnsMedium', 'columnsSmall', 'columnsUltra', 'direction', 'directionLarge', 'directionMedium', 'directionSmall', 'directionUltra', 'items', 'variant'],
|
|
1062
|
+
inputs: ['bigLabel', 'columns', 'columnsLarge', 'columnsMedium', 'columnsSmall', 'columnsUltra', 'direction', 'directionLarge', 'directionMedium', 'directionSmall', 'directionUltra', 'items', 'variant'],
|
|
993
1063
|
methods: ['getCurrentDirection']
|
|
994
1064
|
})
|
|
995
1065
|
], StzhDatalist);
|
|
@@ -1000,7 +1070,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1000
1070
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1001
1071
|
template: '<ng-content></ng-content>',
|
|
1002
1072
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1003
|
-
inputs: ['columns', 'columnsLarge', 'columnsMedium', 'columnsSmall', 'columnsUltra', 'direction', 'directionLarge', 'directionMedium', 'directionSmall', 'directionUltra', 'items', 'variant'],
|
|
1073
|
+
inputs: ['bigLabel', 'columns', 'columnsLarge', 'columnsMedium', 'columnsSmall', 'columnsUltra', 'direction', 'directionLarge', 'directionMedium', 'directionSmall', 'directionUltra', 'items', 'variant'],
|
|
1004
1074
|
}]
|
|
1005
1075
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1006
1076
|
let StzhDatalistItem = class StzhDatalistItem {
|
|
@@ -1011,11 +1081,11 @@ let StzhDatalistItem = class StzhDatalistItem {
|
|
|
1011
1081
|
proxyOutputs(this, this.el, ['stzhItemActionClick', 'stzhClick']);
|
|
1012
1082
|
}
|
|
1013
1083
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatalistItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1014
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatalistItem, selector: "stzh-datalist-item", inputs: { a11yControls: "a11yControls", a11yExpanded: "a11yExpanded", download: "download", href: "href", icon: "icon", iconHref: "iconHref", iconLabel: "iconLabel", iconPosition: "iconPosition", iconTooltip: "iconTooltip", label: "label", leadingIcon: "leadingIcon", localization: "localization", meta: "meta", rel: "rel", statusLabel: "statusLabel", statusType: "statusType", target: "target", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1084
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatalistItem, selector: "stzh-datalist-item", inputs: { a11yControls: "a11yControls", a11yExpanded: "a11yExpanded", download: "download", href: "href", icon: "icon", iconHref: "iconHref", iconLabel: "iconLabel", iconPosition: "iconPosition", iconTooltip: "iconTooltip", label: "label", leadingIcon: "leadingIcon", localization: "localization", meta: "meta", readspeakerHref: "readspeakerHref", readspeakerLabel: "readspeakerLabel", rel: "rel", statusLabel: "statusLabel", statusType: "statusType", target: "target", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1015
1085
|
};
|
|
1016
1086
|
StzhDatalistItem = __decorate([
|
|
1017
1087
|
ProxyCmp({
|
|
1018
|
-
inputs: ['a11yControls', 'a11yExpanded', 'download', 'href', 'icon', 'iconHref', 'iconLabel', 'iconPosition', 'iconTooltip', 'label', 'leadingIcon', 'localization', 'meta', 'rel', 'statusLabel', 'statusType', 'target', 'value']
|
|
1088
|
+
inputs: ['a11yControls', 'a11yExpanded', 'download', 'href', 'icon', 'iconHref', 'iconLabel', 'iconPosition', 'iconTooltip', 'label', 'leadingIcon', 'localization', 'meta', 'readspeakerHref', 'readspeakerLabel', 'rel', 'statusLabel', 'statusType', 'target', 'value']
|
|
1019
1089
|
})
|
|
1020
1090
|
], StzhDatalistItem);
|
|
1021
1091
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatalistItem, decorators: [{
|
|
@@ -1025,7 +1095,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1025
1095
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1026
1096
|
template: '<ng-content></ng-content>',
|
|
1027
1097
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1028
|
-
inputs: ['a11yControls', 'a11yExpanded', 'download', 'href', 'icon', 'iconHref', 'iconLabel', 'iconPosition', 'iconTooltip', 'label', 'leadingIcon', 'localization', 'meta', 'rel', 'statusLabel', 'statusType', 'target', 'value'],
|
|
1098
|
+
inputs: ['a11yControls', 'a11yExpanded', 'download', 'href', 'icon', 'iconHref', 'iconLabel', 'iconPosition', 'iconTooltip', 'label', 'leadingIcon', 'localization', 'meta', 'readspeakerHref', 'readspeakerLabel', 'rel', 'statusLabel', 'statusType', 'target', 'value'],
|
|
1029
1099
|
}]
|
|
1030
1100
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1031
1101
|
let StzhDatamessagelist = class StzhDatamessagelist {
|
|
@@ -1083,11 +1153,11 @@ let StzhDatatable = class StzhDatatable {
|
|
|
1083
1153
|
proxyOutputs(this, this.el, ['stzhRowClick', 'stzhCellClick', 'stzhHeadingCellClick', 'stzhSortClick', 'stzhSortByChange', 'stzhSortDirectionChange']);
|
|
1084
1154
|
}
|
|
1085
1155
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatatable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1086
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatatable, selector: "stzh-datatable", inputs: { columns: "columns", csvDynamicTyping: "csvDynamicTyping", csvHeader: "csvHeader", csvUrl: "csvUrl", disableMinWidth: "disableMinWidth", hideColumnHeadings: "hideColumnHeadings", hideSearch: "hideSearch", idField: "idField", label: "label", localization: "localization", page: "page", pageSize: "pageSize", rowHeaderField: "rowHeaderField", rows: "rows", showList: "showList", sortBy: "sortBy", sortDirection: "sortDirection", tableLayout: "tableLayout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1156
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatatable, selector: "stzh-datatable", inputs: { caption: "caption", columns: "columns", csvDynamicTyping: "csvDynamicTyping", csvHeader: "csvHeader", csvUrl: "csvUrl", disableMinWidth: "disableMinWidth", hideColumnHeadings: "hideColumnHeadings", hideSearch: "hideSearch", idField: "idField", label: "label", localization: "localization", page: "page", pageSize: "pageSize", rowHeaderField: "rowHeaderField", rows: "rows", showList: "showList", sortBy: "sortBy", sortDirection: "sortDirection", tableLayout: "tableLayout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1087
1157
|
};
|
|
1088
1158
|
StzhDatatable = __decorate([
|
|
1089
1159
|
ProxyCmp({
|
|
1090
|
-
inputs: ['columns', 'csvDynamicTyping', 'csvHeader', 'csvUrl', 'disableMinWidth', 'hideColumnHeadings', 'hideSearch', 'idField', 'label', 'localization', 'page', 'pageSize', 'rowHeaderField', 'rows', 'showList', 'sortBy', 'sortDirection', 'tableLayout'],
|
|
1160
|
+
inputs: ['caption', 'columns', 'csvDynamicTyping', 'csvHeader', 'csvUrl', 'disableMinWidth', 'hideColumnHeadings', 'hideSearch', 'idField', 'label', 'localization', 'page', 'pageSize', 'rowHeaderField', 'rows', 'showList', 'sortBy', 'sortDirection', 'tableLayout'],
|
|
1091
1161
|
methods: ['toggleSort']
|
|
1092
1162
|
})
|
|
1093
1163
|
], StzhDatatable);
|
|
@@ -1098,7 +1168,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1098
1168
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1099
1169
|
template: '<ng-content></ng-content>',
|
|
1100
1170
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1101
|
-
inputs: ['columns', 'csvDynamicTyping', 'csvHeader', 'csvUrl', 'disableMinWidth', 'hideColumnHeadings', 'hideSearch', 'idField', 'label', 'localization', 'page', 'pageSize', 'rowHeaderField', 'rows', 'showList', 'sortBy', 'sortDirection', 'tableLayout'],
|
|
1171
|
+
inputs: ['caption', 'columns', 'csvDynamicTyping', 'csvHeader', 'csvUrl', 'disableMinWidth', 'hideColumnHeadings', 'hideSearch', 'idField', 'label', 'localization', 'page', 'pageSize', 'rowHeaderField', 'rows', 'showList', 'sortBy', 'sortDirection', 'tableLayout'],
|
|
1102
1172
|
}]
|
|
1103
1173
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1104
1174
|
let StzhDatepicker = class StzhDatepicker {
|
|
@@ -1310,11 +1380,11 @@ let StzhEventinfo = class StzhEventinfo {
|
|
|
1310
1380
|
this.el = r.nativeElement;
|
|
1311
1381
|
}
|
|
1312
1382
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhEventinfo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1313
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhEventinfo, selector: "stzh-eventinfo", inputs: { calendarLabel: "calendarLabel", calendarUrl: "calendarUrl", dateAdapter: "dateAdapter", end: "end", items: "items", localization: "localization", monthHeadingLevel: "monthHeadingLevel", start: "start" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1383
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhEventinfo, selector: "stzh-eventinfo", inputs: { calendarLabel: "calendarLabel", calendarUrl: "calendarUrl", dateAdapter: "dateAdapter", end: "end", items: "items", itemsSortDirection: "itemsSortDirection", localization: "localization", monthHeadingLevel: "monthHeadingLevel", start: "start" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1314
1384
|
};
|
|
1315
1385
|
StzhEventinfo = __decorate([
|
|
1316
1386
|
ProxyCmp({
|
|
1317
|
-
inputs: ['calendarLabel', 'calendarUrl', 'dateAdapter', 'end', 'items', 'localization', 'monthHeadingLevel', 'start']
|
|
1387
|
+
inputs: ['calendarLabel', 'calendarUrl', 'dateAdapter', 'end', 'items', 'itemsSortDirection', 'localization', 'monthHeadingLevel', 'start']
|
|
1318
1388
|
})
|
|
1319
1389
|
], StzhEventinfo);
|
|
1320
1390
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhEventinfo, decorators: [{
|
|
@@ -1324,7 +1394,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1324
1394
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1325
1395
|
template: '<ng-content></ng-content>',
|
|
1326
1396
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1327
|
-
inputs: ['calendarLabel', 'calendarUrl', 'dateAdapter', 'end', 'items', 'localization', 'monthHeadingLevel', 'start'],
|
|
1397
|
+
inputs: ['calendarLabel', 'calendarUrl', 'dateAdapter', 'end', 'items', 'itemsSortDirection', 'localization', 'monthHeadingLevel', 'start'],
|
|
1398
|
+
}]
|
|
1399
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1400
|
+
let StzhFeedreader = class StzhFeedreader {
|
|
1401
|
+
constructor(c, r, z) {
|
|
1402
|
+
this.z = z;
|
|
1403
|
+
c.detach();
|
|
1404
|
+
this.el = r.nativeElement;
|
|
1405
|
+
}
|
|
1406
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFeedreader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1407
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhFeedreader, selector: "stzh-feedreader", inputs: { description: "description", heading: "heading", headingLevel: "headingLevel", localization: "localization", noItemsLink: "noItemsLink", noItemsText: "noItemsText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1408
|
+
};
|
|
1409
|
+
StzhFeedreader = __decorate([
|
|
1410
|
+
ProxyCmp({
|
|
1411
|
+
inputs: ['description', 'heading', 'headingLevel', 'localization', 'noItemsLink', 'noItemsText']
|
|
1412
|
+
})
|
|
1413
|
+
], StzhFeedreader);
|
|
1414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFeedreader, decorators: [{
|
|
1415
|
+
type: Component,
|
|
1416
|
+
args: [{
|
|
1417
|
+
selector: 'stzh-feedreader',
|
|
1418
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1419
|
+
template: '<ng-content></ng-content>',
|
|
1420
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1421
|
+
inputs: ['description', 'heading', 'headingLevel', 'localization', 'noItemsLink', 'noItemsText'],
|
|
1422
|
+
}]
|
|
1423
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1424
|
+
let StzhFeedreaderItem = class StzhFeedreaderItem {
|
|
1425
|
+
constructor(c, r, z) {
|
|
1426
|
+
this.z = z;
|
|
1427
|
+
c.detach();
|
|
1428
|
+
this.el = r.nativeElement;
|
|
1429
|
+
}
|
|
1430
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFeedreaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1431
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhFeedreaderItem, selector: "stzh-feedreader-item", inputs: { link: "link", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1432
|
+
};
|
|
1433
|
+
StzhFeedreaderItem = __decorate([
|
|
1434
|
+
ProxyCmp({
|
|
1435
|
+
inputs: ['link', 'target', 'variant']
|
|
1436
|
+
})
|
|
1437
|
+
], StzhFeedreaderItem);
|
|
1438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFeedreaderItem, decorators: [{
|
|
1439
|
+
type: Component,
|
|
1440
|
+
args: [{
|
|
1441
|
+
selector: 'stzh-feedreader-item',
|
|
1442
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1443
|
+
template: '<ng-content></ng-content>',
|
|
1444
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1445
|
+
inputs: ['link', 'target', 'variant'],
|
|
1328
1446
|
}]
|
|
1329
1447
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1330
1448
|
let StzhFieldset = class StzhFieldset {
|
|
@@ -1387,7 +1505,7 @@ let StzhFlyingfocus = class StzhFlyingfocus {
|
|
|
1387
1505
|
StzhFlyingfocus = __decorate([
|
|
1388
1506
|
ProxyCmp({
|
|
1389
1507
|
inputs: ['minimalEdgeSpace'],
|
|
1390
|
-
methods: ['reposition']
|
|
1508
|
+
methods: ['reposition', 'activate', 'deactivate']
|
|
1391
1509
|
})
|
|
1392
1510
|
], StzhFlyingfocus);
|
|
1393
1511
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFlyingfocus, decorators: [{
|
|
@@ -1457,11 +1575,11 @@ let StzhGeoRefData = class StzhGeoRefData {
|
|
|
1457
1575
|
proxyOutputs(this, this.el, ['stzhOverlayCloseClick']);
|
|
1458
1576
|
}
|
|
1459
1577
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhGeoRefData, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1460
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhGeoRefData, selector: "stzh-geo-ref-data", inputs: { availableTags: "availableTags", baseUrlOverride: "baseUrlOverride", heading: "heading", mapDataUrl: "mapDataUrl", poiDataUrl: "poiDataUrl", resetTag: "resetTag", searchIndexFields: "searchIndexFields", searchIndexIdField: "searchIndexIdField" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1578
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhGeoRefData, selector: "stzh-geo-ref-data", inputs: { al: "al", availableTags: "availableTags", baseUrlOverride: "baseUrlOverride", heading: "heading", mapDataUrl: "mapDataUrl", poiDataUrl: "poiDataUrl", resetTag: "resetTag", searchIndexFields: "searchIndexFields", searchIndexIdField: "searchIndexIdField" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1461
1579
|
};
|
|
1462
1580
|
StzhGeoRefData = __decorate([
|
|
1463
1581
|
ProxyCmp({
|
|
1464
|
-
inputs: ['availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField']
|
|
1582
|
+
inputs: ['al', 'availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField']
|
|
1465
1583
|
})
|
|
1466
1584
|
], StzhGeoRefData);
|
|
1467
1585
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhGeoRefData, decorators: [{
|
|
@@ -1471,7 +1589,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1471
1589
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1472
1590
|
template: '<ng-content></ng-content>',
|
|
1473
1591
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1474
|
-
inputs: ['availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField'],
|
|
1592
|
+
inputs: ['al', 'availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField'],
|
|
1475
1593
|
}]
|
|
1476
1594
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1477
1595
|
let StzhGhettobox = class StzhGhettobox {
|
|
@@ -1513,7 +1631,7 @@ let StzhHeader = class StzhHeader {
|
|
|
1513
1631
|
StzhHeader = __decorate([
|
|
1514
1632
|
ProxyCmp({
|
|
1515
1633
|
inputs: ['appNavItems', 'hideMetabar', 'href', 'languageActive', 'languageId', 'languagePreventUrlchange', 'languageStay', 'languages', 'localization', 'loginErrorMessage', 'logoAnalyticsId', 'logoType', 'menuBackLabel', 'menuId', 'menuItems', 'metanavId', 'metanavItems', 'searchAction', 'searchFieldName', 'searchId', 'searchValue', 'sticky', 'userSpecificMetanavItemsEndpoint', 'userSpecificMetanavItemsNotLoggedIn'],
|
|
1516
|
-
methods: ['updatePosition']
|
|
1634
|
+
methods: ['updatePosition', 'requestUserSpecificMetanavItems']
|
|
1517
1635
|
})
|
|
1518
1636
|
], StzhHeader);
|
|
1519
1637
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHeader, decorators: [{
|
|
@@ -1533,11 +1651,11 @@ let StzhHeading = class StzhHeading {
|
|
|
1533
1651
|
this.el = r.nativeElement;
|
|
1534
1652
|
}
|
|
1535
1653
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHeading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1536
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhHeading, selector: "stzh-heading", inputs: { curve: "curve", level: "level" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1654
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhHeading, selector: "stzh-heading", inputs: { curve: "curve", htmlContent: "htmlContent", level: "level" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1537
1655
|
};
|
|
1538
1656
|
StzhHeading = __decorate([
|
|
1539
1657
|
ProxyCmp({
|
|
1540
|
-
inputs: ['curve', 'level']
|
|
1658
|
+
inputs: ['curve', 'htmlContent', 'level']
|
|
1541
1659
|
})
|
|
1542
1660
|
], StzhHeading);
|
|
1543
1661
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHeading, decorators: [{
|
|
@@ -1547,7 +1665,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1547
1665
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1548
1666
|
template: '<ng-content></ng-content>',
|
|
1549
1667
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1550
|
-
inputs: ['curve', 'level'],
|
|
1668
|
+
inputs: ['curve', 'htmlContent', 'level'],
|
|
1669
|
+
}]
|
|
1670
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1671
|
+
let StzhHomepageSearch = class StzhHomepageSearch {
|
|
1672
|
+
constructor(c, r, z) {
|
|
1673
|
+
this.z = z;
|
|
1674
|
+
c.detach();
|
|
1675
|
+
this.el = r.nativeElement;
|
|
1676
|
+
proxyOutputs(this, this.el, ['stzhSearchChange', 'stzhSearchChanged']);
|
|
1677
|
+
}
|
|
1678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHomepageSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1679
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhHomepageSearch, selector: "stzh-homepage-search", inputs: { placeholder: "placeholder", searchAction: "searchAction", searchFieldName: "searchFieldName", searchId: "searchId", searchValue: "searchValue" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1680
|
+
};
|
|
1681
|
+
StzhHomepageSearch = __decorate([
|
|
1682
|
+
ProxyCmp({
|
|
1683
|
+
inputs: ['placeholder', 'searchAction', 'searchFieldName', 'searchId', 'searchValue']
|
|
1684
|
+
})
|
|
1685
|
+
], StzhHomepageSearch);
|
|
1686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHomepageSearch, decorators: [{
|
|
1687
|
+
type: Component,
|
|
1688
|
+
args: [{
|
|
1689
|
+
selector: 'stzh-homepage-search',
|
|
1690
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1691
|
+
template: '<ng-content></ng-content>',
|
|
1692
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1693
|
+
inputs: ['placeholder', 'searchAction', 'searchFieldName', 'searchId', 'searchValue'],
|
|
1551
1694
|
}]
|
|
1552
1695
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1553
1696
|
let StzhHomepageServiceHighlights = class StzhHomepageServiceHighlights {
|
|
@@ -1620,6 +1763,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1620
1763
|
inputs: ['around', 'aroundLeft', 'aroundRight', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra'],
|
|
1621
1764
|
}]
|
|
1622
1765
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1766
|
+
let StzhHttpError = class StzhHttpError {
|
|
1767
|
+
constructor(c, r, z) {
|
|
1768
|
+
this.z = z;
|
|
1769
|
+
c.detach();
|
|
1770
|
+
this.el = r.nativeElement;
|
|
1771
|
+
}
|
|
1772
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHttpError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1773
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhHttpError, selector: "stzh-http-error", inputs: { description: "description", errorcode: "errorcode", heading: "heading", hrefBack: "hrefBack", hrefStart: "hrefStart", localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1774
|
+
};
|
|
1775
|
+
StzhHttpError = __decorate([
|
|
1776
|
+
ProxyCmp({
|
|
1777
|
+
inputs: ['description', 'errorcode', 'heading', 'hrefBack', 'hrefStart', 'localization']
|
|
1778
|
+
})
|
|
1779
|
+
], StzhHttpError);
|
|
1780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHttpError, decorators: [{
|
|
1781
|
+
type: Component,
|
|
1782
|
+
args: [{
|
|
1783
|
+
selector: 'stzh-http-error',
|
|
1784
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1785
|
+
template: '<ng-content></ng-content>',
|
|
1786
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1787
|
+
inputs: ['description', 'errorcode', 'heading', 'hrefBack', 'hrefStart', 'localization'],
|
|
1788
|
+
}]
|
|
1789
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1623
1790
|
let StzhIcon = class StzhIcon {
|
|
1624
1791
|
constructor(c, r, z) {
|
|
1625
1792
|
this.z = z;
|
|
@@ -1982,6 +2149,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1982
2149
|
inputs: ['a11yDescribedbyMonth', 'a11yDescribedbyYear', 'descriptionLongMonth', 'descriptionLongYear', 'descriptionMonth', 'descriptionYear', 'disabled', 'errorMonth', 'errorYear', 'format', 'hideOptional', 'invalidMonth', 'invalidYear', 'localization', 'max', 'maxYear', 'min', 'minYear', 'monthLabel', 'monthOpen', 'months', 'name', 'popoverPlacement', 'readonly', 'required', 'size', 'value', 'yearLabel', 'yearOpen', 'yearSortDirection', 'years'],
|
|
1983
2150
|
}]
|
|
1984
2151
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2152
|
+
let StzhOfflineIndicator = class StzhOfflineIndicator {
|
|
2153
|
+
constructor(c, r, z) {
|
|
2154
|
+
this.z = z;
|
|
2155
|
+
c.detach();
|
|
2156
|
+
this.el = r.nativeElement;
|
|
2157
|
+
}
|
|
2158
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOfflineIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2159
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhOfflineIndicator, selector: "stzh-offline-indicator", inputs: { localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2160
|
+
};
|
|
2161
|
+
StzhOfflineIndicator = __decorate([
|
|
2162
|
+
ProxyCmp({
|
|
2163
|
+
inputs: ['localization'],
|
|
2164
|
+
methods: ['addToast', 'removeToast']
|
|
2165
|
+
})
|
|
2166
|
+
], StzhOfflineIndicator);
|
|
2167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOfflineIndicator, decorators: [{
|
|
2168
|
+
type: Component,
|
|
2169
|
+
args: [{
|
|
2170
|
+
selector: 'stzh-offline-indicator',
|
|
2171
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2172
|
+
template: '<ng-content></ng-content>',
|
|
2173
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2174
|
+
inputs: ['localization'],
|
|
2175
|
+
}]
|
|
2176
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1985
2177
|
let StzhOlmap = class StzhOlmap {
|
|
1986
2178
|
constructor(c, r, z) {
|
|
1987
2179
|
this.z = z;
|
|
@@ -1990,12 +2182,12 @@ let StzhOlmap = class StzhOlmap {
|
|
|
1990
2182
|
proxyOutputs(this, this.el, ['stzhInitialized', 'stzhPostRender', 'stzhMoveStart', 'stzhMoveEnd', 'stzhMovePanZoom']);
|
|
1991
2183
|
}
|
|
1992
2184
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOlmap, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1993
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhOlmap, selector: "stzh-olmap", inputs: { center: "center", centerMarker: "centerMarker", hostname: "hostname", layer: "layer", layerControl: "layerControl", layers: "layers", localization: "localization", locationControl: "locationControl", pinchRotateThreshold: "pinchRotateThreshold", printControl: "printControl", resolutions: "resolutions", scaleControl: "scaleControl", zoom: "zoom", zoomLocation: "zoomLocation" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2185
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhOlmap, selector: "stzh-olmap", inputs: { center: "center", centerMarker: "centerMarker", hostname: "hostname", layer: "layer", layerControl: "layerControl", layers: "layers", localization: "localization", locationControl: "locationControl", pinchRotateThreshold: "pinchRotateThreshold", printControl: "printControl", resolutions: "resolutions", scaleControl: "scaleControl", writeExtentToUrlEnabled: "writeExtentToUrlEnabled", zoom: "zoom", zoomLocation: "zoomLocation" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1994
2186
|
};
|
|
1995
2187
|
StzhOlmap = __decorate([
|
|
1996
2188
|
ProxyCmp({
|
|
1997
|
-
inputs: ['center', 'centerMarker', 'hostname', 'layer', 'layerControl', 'layers', 'localization', 'locationControl', 'pinchRotateThreshold', 'printControl', 'resolutions', 'scaleControl', 'zoom', 'zoomLocation'],
|
|
1998
|
-
methods: ['getMap', 'getVisibleMarkers', 'findMarkerById', 'addIconMarker', 'addIconMarkers', 'updateViewToFitMarkers', 'removeAllIconMarkers', 'removeIconMarker', 'setIconMarkerActive', 'setIconMarkerInactive', 'setAllIconMarkersInactive', 'enableLocationTracking', 'disableLocationTracking', 'getDistance']
|
|
2189
|
+
inputs: ['center', 'centerMarker', 'hostname', 'layer', 'layerControl', 'layers', 'localization', 'locationControl', 'pinchRotateThreshold', 'printControl', 'resolutions', 'scaleControl', 'writeExtentToUrlEnabled', 'zoom', 'zoomLocation'],
|
|
2190
|
+
methods: ['getMap', 'writeExtentToUrl', 'getVisibleMarkers', 'findMarkerById', 'addIconMarker', 'addIconMarkers', 'updateViewToFitMarkers', 'removeAllIconMarkers', 'removeIconMarker', 'setIconMarkerActive', 'setIconMarkerInactive', 'setAllIconMarkersInactive', 'enableLocationTracking', 'disableLocationTracking', 'getDistance']
|
|
1999
2191
|
})
|
|
2000
2192
|
], StzhOlmap);
|
|
2001
2193
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOlmap, decorators: [{
|
|
@@ -2005,7 +2197,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2005
2197
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2006
2198
|
template: '<ng-content></ng-content>',
|
|
2007
2199
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2008
|
-
inputs: ['center', 'centerMarker', 'hostname', 'layer', 'layerControl', 'layers', 'localization', 'locationControl', 'pinchRotateThreshold', 'printControl', 'resolutions', 'scaleControl', 'zoom', 'zoomLocation'],
|
|
2200
|
+
inputs: ['center', 'centerMarker', 'hostname', 'layer', 'layerControl', 'layers', 'localization', 'locationControl', 'pinchRotateThreshold', 'printControl', 'resolutions', 'scaleControl', 'writeExtentToUrlEnabled', 'zoom', 'zoomLocation'],
|
|
2009
2201
|
}]
|
|
2010
2202
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2011
2203
|
let StzhOverlay = class StzhOverlay {
|
|
@@ -2372,6 +2564,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2372
2564
|
inputs: ['analyticsId', 'clickDisabled', 'current', 'disabled', 'dotted', 'first', 'hide', 'icon', 'label', 'last', 'passed', 'step'],
|
|
2373
2565
|
}]
|
|
2374
2566
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2567
|
+
let StzhQuote = class StzhQuote {
|
|
2568
|
+
constructor(c, r, z) {
|
|
2569
|
+
this.z = z;
|
|
2570
|
+
c.detach();
|
|
2571
|
+
this.el = r.nativeElement;
|
|
2572
|
+
}
|
|
2573
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhQuote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2574
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhQuote, selector: "stzh-quote", inputs: { text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2575
|
+
};
|
|
2576
|
+
StzhQuote = __decorate([
|
|
2577
|
+
ProxyCmp({
|
|
2578
|
+
inputs: ['text']
|
|
2579
|
+
})
|
|
2580
|
+
], StzhQuote);
|
|
2581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhQuote, decorators: [{
|
|
2582
|
+
type: Component,
|
|
2583
|
+
args: [{
|
|
2584
|
+
selector: 'stzh-quote',
|
|
2585
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2586
|
+
template: '<ng-content></ng-content>',
|
|
2587
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2588
|
+
inputs: ['text'],
|
|
2589
|
+
}]
|
|
2590
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2375
2591
|
let StzhRadio = class StzhRadio {
|
|
2376
2592
|
constructor(c, r, z) {
|
|
2377
2593
|
this.z = z;
|
|
@@ -2573,11 +2789,11 @@ let StzhSearch = class StzhSearch {
|
|
|
2573
2789
|
proxyOutputs(this, this.el, ['stzhOverlayCloseClick']);
|
|
2574
2790
|
}
|
|
2575
2791
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2576
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSearch, selector: "stzh-search", inputs: { api: "api", autofetchAsideFilters: "autofetchAsideFilters", autofetchMainFilters: "autofetchMainFilters",
|
|
2792
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSearch, selector: "stzh-search", inputs: { api: "api", autofetchAsideFilters: "autofetchAsideFilters", autofetchMainFilters: "autofetchMainFilters", debounceTime: "debounceTime", emptyLinkHref: "emptyLinkHref", emptyLinkLabel: "emptyLinkLabel", emptyText: "emptyText", heading: "heading", hideAsideFilters: "hideAsideFilters", hideMainFilters: "hideMainFilters", hideResultsHeading: "hideResultsHeading", hyphensEnabled: "hyphensEnabled", initialFetch: "initialFetch", limit: "limit", localization: "localization", preventUpdateUrl: "preventUpdateUrl", resultHeadingLevel: "resultHeadingLevel", sortBy: "sortBy", sortOptions: "sortOptions", subscribeAdditionalQueryParameters: "subscribeAdditionalQueryParameters", subscribeLabel: "subscribeLabel", subscribePath: "subscribePath", templateResult: "templateResult", templateResultWrapperElement: "templateResultWrapperElement", templateResultWrapperProps: "templateResultWrapperProps", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2577
2793
|
};
|
|
2578
2794
|
StzhSearch = __decorate([
|
|
2579
2795
|
ProxyCmp({
|
|
2580
|
-
inputs: ['api', 'autofetchAsideFilters', 'autofetchMainFilters', '
|
|
2796
|
+
inputs: ['api', 'autofetchAsideFilters', 'autofetchMainFilters', 'debounceTime', 'emptyLinkHref', 'emptyLinkLabel', 'emptyText', 'heading', 'hideAsideFilters', 'hideMainFilters', 'hideResultsHeading', 'hyphensEnabled', 'initialFetch', 'limit', 'localization', 'preventUpdateUrl', 'resultHeadingLevel', 'sortBy', 'sortOptions', 'subscribeAdditionalQueryParameters', 'subscribeLabel', 'subscribePath', 'templateResult', 'templateResultWrapperElement', 'templateResultWrapperProps', 'variant']
|
|
2581
2797
|
})
|
|
2582
2798
|
], StzhSearch);
|
|
2583
2799
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSearch, decorators: [{
|
|
@@ -2587,7 +2803,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2587
2803
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2588
2804
|
template: '<ng-content></ng-content>',
|
|
2589
2805
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2590
|
-
inputs: ['api', 'autofetchAsideFilters', 'autofetchMainFilters', '
|
|
2806
|
+
inputs: ['api', 'autofetchAsideFilters', 'autofetchMainFilters', 'debounceTime', 'emptyLinkHref', 'emptyLinkLabel', 'emptyText', 'heading', 'hideAsideFilters', 'hideMainFilters', 'hideResultsHeading', 'hyphensEnabled', 'initialFetch', 'limit', 'localization', 'preventUpdateUrl', 'resultHeadingLevel', 'sortBy', 'sortOptions', 'subscribeAdditionalQueryParameters', 'subscribeLabel', 'subscribePath', 'templateResult', 'templateResultWrapperElement', 'templateResultWrapperProps', 'variant'],
|
|
2591
2807
|
}]
|
|
2592
2808
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2593
2809
|
let StzhSection = class StzhSection {
|
|
@@ -2762,11 +2978,11 @@ let StzhSocialmediastream = class StzhSocialmediastream {
|
|
|
2762
2978
|
this.el = r.nativeElement;
|
|
2763
2979
|
}
|
|
2764
2980
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSocialmediastream, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2765
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSocialmediastream, selector: "stzh-socialmediastream", inputs: { items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2981
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSocialmediastream, selector: "stzh-socialmediastream", inputs: { heading: "heading", headingLevel: "headingLevel", items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2766
2982
|
};
|
|
2767
2983
|
StzhSocialmediastream = __decorate([
|
|
2768
2984
|
ProxyCmp({
|
|
2769
|
-
inputs: ['items']
|
|
2985
|
+
inputs: ['heading', 'headingLevel', 'items']
|
|
2770
2986
|
})
|
|
2771
2987
|
], StzhSocialmediastream);
|
|
2772
2988
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSocialmediastream, decorators: [{
|
|
@@ -2776,7 +2992,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2776
2992
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2777
2993
|
template: '<ng-content></ng-content>',
|
|
2778
2994
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2779
|
-
inputs: ['items'],
|
|
2995
|
+
inputs: ['heading', 'headingLevel', 'items'],
|
|
2780
2996
|
}]
|
|
2781
2997
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2782
2998
|
let StzhSocialmediastreamItem = class StzhSocialmediastreamItem {
|
|
@@ -2786,11 +3002,11 @@ let StzhSocialmediastreamItem = class StzhSocialmediastreamItem {
|
|
|
2786
3002
|
this.el = r.nativeElement;
|
|
2787
3003
|
}
|
|
2788
3004
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSocialmediastreamItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2789
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSocialmediastreamItem, selector: "stzh-socialmediastream-item", inputs: { item: "item" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3005
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSocialmediastreamItem, selector: "stzh-socialmediastream-item", inputs: { dateAdapter: "dateAdapter", item: "item", localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2790
3006
|
};
|
|
2791
3007
|
StzhSocialmediastreamItem = __decorate([
|
|
2792
3008
|
ProxyCmp({
|
|
2793
|
-
inputs: ['item']
|
|
3009
|
+
inputs: ['dateAdapter', 'item', 'localization']
|
|
2794
3010
|
})
|
|
2795
3011
|
], StzhSocialmediastreamItem);
|
|
2796
3012
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSocialmediastreamItem, decorators: [{
|
|
@@ -2800,7 +3016,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2800
3016
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2801
3017
|
template: '<ng-content></ng-content>',
|
|
2802
3018
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2803
|
-
inputs: ['item'],
|
|
3019
|
+
inputs: ['dateAdapter', 'item', 'localization'],
|
|
2804
3020
|
}]
|
|
2805
3021
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2806
3022
|
let StzhSortable = class StzhSortable {
|
|
@@ -3281,10 +3497,12 @@ let StzhVbzConnectionFinder = class StzhVbzConnectionFinder {
|
|
|
3281
3497
|
this.el = r.nativeElement;
|
|
3282
3498
|
}
|
|
3283
3499
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzConnectionFinder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3284
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVbzConnectionFinder, selector: "stzh-vbz-connection-finder", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3500
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVbzConnectionFinder, selector: "stzh-vbz-connection-finder", inputs: { zvvScript: "zvvScript" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3285
3501
|
};
|
|
3286
3502
|
StzhVbzConnectionFinder = __decorate([
|
|
3287
|
-
ProxyCmp({
|
|
3503
|
+
ProxyCmp({
|
|
3504
|
+
inputs: ['zvvScript']
|
|
3505
|
+
})
|
|
3288
3506
|
], StzhVbzConnectionFinder);
|
|
3289
3507
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzConnectionFinder, decorators: [{
|
|
3290
3508
|
type: Component,
|
|
@@ -3293,7 +3511,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3293
3511
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3294
3512
|
template: '<ng-content></ng-content>',
|
|
3295
3513
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3296
|
-
inputs: [],
|
|
3514
|
+
inputs: ['zvvScript'],
|
|
3297
3515
|
}]
|
|
3298
3516
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3299
3517
|
let StzhVbzIntro = class StzhVbzIntro {
|
|
@@ -3480,6 +3698,8 @@ const DIRECTIVES = [
|
|
|
3480
3698
|
StzhAudio,
|
|
3481
3699
|
StzhBadge,
|
|
3482
3700
|
StzhBanner,
|
|
3701
|
+
StzhBathstatusItem,
|
|
3702
|
+
StzhBathstatusList,
|
|
3483
3703
|
StzhBreadcrumb,
|
|
3484
3704
|
StzhButton,
|
|
3485
3705
|
StzhButtongroup,
|
|
@@ -3498,6 +3718,7 @@ const DIRECTIVES = [
|
|
|
3498
3718
|
StzhChipgroup,
|
|
3499
3719
|
StzhChipselect,
|
|
3500
3720
|
StzhClamp,
|
|
3721
|
+
StzhCompanyLogo,
|
|
3501
3722
|
StzhContact,
|
|
3502
3723
|
StzhContactCv,
|
|
3503
3724
|
StzhContainer,
|
|
@@ -3518,6 +3739,8 @@ const DIRECTIVES = [
|
|
|
3518
3739
|
StzhEditor,
|
|
3519
3740
|
StzhEventdata,
|
|
3520
3741
|
StzhEventinfo,
|
|
3742
|
+
StzhFeedreader,
|
|
3743
|
+
StzhFeedreaderItem,
|
|
3521
3744
|
StzhFieldset,
|
|
3522
3745
|
StzhFigure,
|
|
3523
3746
|
StzhFlyingfocus,
|
|
@@ -3527,9 +3750,11 @@ const DIRECTIVES = [
|
|
|
3527
3750
|
StzhGhettobox,
|
|
3528
3751
|
StzhHeader,
|
|
3529
3752
|
StzhHeading,
|
|
3753
|
+
StzhHomepageSearch,
|
|
3530
3754
|
StzhHomepageServiceHighlights,
|
|
3531
3755
|
StzhHr,
|
|
3532
3756
|
StzhHspace,
|
|
3757
|
+
StzhHttpError,
|
|
3533
3758
|
StzhIcon,
|
|
3534
3759
|
StzhIframe,
|
|
3535
3760
|
StzhImagecomparison,
|
|
@@ -3545,6 +3770,7 @@ const DIRECTIVES = [
|
|
|
3545
3770
|
StzhMessage,
|
|
3546
3771
|
StzhMicrositeTeaserlist,
|
|
3547
3772
|
StzhMonthyearpicker,
|
|
3773
|
+
StzhOfflineIndicator,
|
|
3548
3774
|
StzhOlmap,
|
|
3549
3775
|
StzhOverlay,
|
|
3550
3776
|
StzhPageSkiplinks,
|
|
@@ -3561,6 +3787,7 @@ const DIRECTIVES = [
|
|
|
3561
3787
|
StzhPrint,
|
|
3562
3788
|
StzhProgressbar,
|
|
3563
3789
|
StzhProgressbarItem,
|
|
3790
|
+
StzhQuote,
|
|
3564
3791
|
StzhRadio,
|
|
3565
3792
|
StzhRadiogroup,
|
|
3566
3793
|
StzhRatio,
|
|
@@ -3787,10 +4014,10 @@ const declarations = [
|
|
|
3787
4014
|
];
|
|
3788
4015
|
class StzhComponentsAngularModule {
|
|
3789
4016
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3790
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, declarations: [StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppBar, StzhAppNav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardSuperteaser, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipgroup, StzhChipselect, StzhClamp, StzhContact, StzhContactCv, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDaterange, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventdata, StzhEventinfo, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGeoRefData, StzhGhettobox, StzhHeader, StzhHeading, StzhHomepageServiceHighlights, StzhHr, StzhHspace, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagetitleHome, StzhPagination, StzhPanorama, StzhPoicard, StzhPoilist, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSocialmediastream, StzhSocialmediastreamItem, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhTag, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzConnectionFinder, StzhVbzIntro, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, BooleanValueAccessor,
|
|
4017
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, declarations: [StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppBar, StzhAppNav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBathstatusItem, StzhBathstatusList, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardSuperteaser, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipgroup, StzhChipselect, StzhClamp, StzhCompanyLogo, StzhContact, StzhContactCv, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDaterange, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventdata, StzhEventinfo, StzhFeedreader, StzhFeedreaderItem, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGeoRefData, StzhGhettobox, StzhHeader, StzhHeading, StzhHomepageSearch, StzhHomepageServiceHighlights, StzhHr, StzhHspace, StzhHttpError, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOfflineIndicator, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagetitleHome, StzhPagination, StzhPanorama, StzhPoicard, StzhPoilist, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhQuote, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSocialmediastream, StzhSocialmediastreamItem, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhTag, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzConnectionFinder, StzhVbzIntro, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, BooleanValueAccessor,
|
|
3791
4018
|
NumericValueAccessor,
|
|
3792
4019
|
SelectValueAccessor,
|
|
3793
|
-
TextValueAccessor], exports: [StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppBar, StzhAppNav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardSuperteaser, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipgroup, StzhChipselect, StzhClamp, StzhContact, StzhContactCv, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDaterange, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventdata, StzhEventinfo, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGeoRefData, StzhGhettobox, StzhHeader, StzhHeading, StzhHomepageServiceHighlights, StzhHr, StzhHspace, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagetitleHome, StzhPagination, StzhPanorama, StzhPoicard, StzhPoilist, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSocialmediastream, StzhSocialmediastreamItem, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhTag, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzConnectionFinder, StzhVbzIntro, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, BooleanValueAccessor,
|
|
4020
|
+
TextValueAccessor], exports: [StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppBar, StzhAppNav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBathstatusItem, StzhBathstatusList, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardSuperteaser, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipgroup, StzhChipselect, StzhClamp, StzhCompanyLogo, StzhContact, StzhContactCv, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDaterange, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventdata, StzhEventinfo, StzhFeedreader, StzhFeedreaderItem, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGeoRefData, StzhGhettobox, StzhHeader, StzhHeading, StzhHomepageSearch, StzhHomepageServiceHighlights, StzhHr, StzhHspace, StzhHttpError, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOfflineIndicator, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagetitleHome, StzhPagination, StzhPanorama, StzhPoicard, StzhPoilist, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhQuote, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSocialmediastream, StzhSocialmediastreamItem, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhTag, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzConnectionFinder, StzhVbzIntro, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, BooleanValueAccessor,
|
|
3794
4021
|
NumericValueAccessor,
|
|
3795
4022
|
SelectValueAccessor,
|
|
3796
4023
|
TextValueAccessor] }); }
|
|
@@ -3825,5 +4052,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3825
4052
|
* Generated bundle index. Do not edit.
|
|
3826
4053
|
*/
|
|
3827
4054
|
|
|
3828
|
-
export { BooleanValueAccessor, DIRECTIVES, NumericValueAccessor, SelectValueAccessor, StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppBar, StzhAppNav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardSuperteaser, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipgroup, StzhChipselect, StzhClamp, StzhComponentsAngularModule, StzhContact, StzhContactCv, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDaterange, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventdata, StzhEventinfo, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGeoRefData, StzhGhettobox, StzhHeader, StzhHeading, StzhHomepageServiceHighlights, StzhHr, StzhHspace, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagetitleHome, StzhPagination, StzhPanorama, StzhPoicard, StzhPoilist, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSocialmediastream, StzhSocialmediastreamItem, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhTag, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzConnectionFinder, StzhVbzIntro, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, TextValueAccessor };
|
|
4055
|
+
export { BooleanValueAccessor, DIRECTIVES, NumericValueAccessor, SelectValueAccessor, StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppBar, StzhAppNav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBathstatusItem, StzhBathstatusList, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardSuperteaser, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipgroup, StzhChipselect, StzhClamp, StzhCompanyLogo, StzhComponentsAngularModule, StzhContact, StzhContactCv, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDaterange, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventdata, StzhEventinfo, StzhFeedreader, StzhFeedreaderItem, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGeoRefData, StzhGhettobox, StzhHeader, StzhHeading, StzhHomepageSearch, StzhHomepageServiceHighlights, StzhHr, StzhHspace, StzhHttpError, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOfflineIndicator, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagetitleHome, StzhPagination, StzhPanorama, StzhPoicard, StzhPoilist, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhQuote, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSocialmediastream, StzhSocialmediastreamItem, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhTag, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzConnectionFinder, StzhVbzIntro, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, TextValueAccessor };
|
|
3829
4056
|
//# sourceMappingURL=oiz-stzh-components-angular.mjs.map
|