@oiz/stzh-components-angular 3.4.0 → 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 +8 -1
- package/esm2022/lib/stencil-generated/proxies.mjs +216 -46
- package/esm2022/stzh-components-angular.module.mjs +3 -3
- package/fesm2022/oiz-stzh-components-angular.mjs +225 -48
- 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 +92 -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,7 @@ 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'],
|
|
1328
1398
|
}]
|
|
1329
1399
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1330
1400
|
let StzhFeedreader = class StzhFeedreader {
|
|
@@ -1435,7 +1505,7 @@ let StzhFlyingfocus = class StzhFlyingfocus {
|
|
|
1435
1505
|
StzhFlyingfocus = __decorate([
|
|
1436
1506
|
ProxyCmp({
|
|
1437
1507
|
inputs: ['minimalEdgeSpace'],
|
|
1438
|
-
methods: ['reposition']
|
|
1508
|
+
methods: ['reposition', 'activate', 'deactivate']
|
|
1439
1509
|
})
|
|
1440
1510
|
], StzhFlyingfocus);
|
|
1441
1511
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFlyingfocus, decorators: [{
|
|
@@ -1505,11 +1575,11 @@ let StzhGeoRefData = class StzhGeoRefData {
|
|
|
1505
1575
|
proxyOutputs(this, this.el, ['stzhOverlayCloseClick']);
|
|
1506
1576
|
}
|
|
1507
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 }); }
|
|
1508
|
-
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 }); }
|
|
1509
1579
|
};
|
|
1510
1580
|
StzhGeoRefData = __decorate([
|
|
1511
1581
|
ProxyCmp({
|
|
1512
|
-
inputs: ['availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField']
|
|
1582
|
+
inputs: ['al', 'availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField']
|
|
1513
1583
|
})
|
|
1514
1584
|
], StzhGeoRefData);
|
|
1515
1585
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhGeoRefData, decorators: [{
|
|
@@ -1519,7 +1589,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1519
1589
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1520
1590
|
template: '<ng-content></ng-content>',
|
|
1521
1591
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1522
|
-
inputs: ['availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField'],
|
|
1592
|
+
inputs: ['al', 'availableTags', 'baseUrlOverride', 'heading', 'mapDataUrl', 'poiDataUrl', 'resetTag', 'searchIndexFields', 'searchIndexIdField'],
|
|
1523
1593
|
}]
|
|
1524
1594
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1525
1595
|
let StzhGhettobox = class StzhGhettobox {
|
|
@@ -1581,11 +1651,11 @@ let StzhHeading = class StzhHeading {
|
|
|
1581
1651
|
this.el = r.nativeElement;
|
|
1582
1652
|
}
|
|
1583
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 }); }
|
|
1584
|
-
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 }); }
|
|
1585
1655
|
};
|
|
1586
1656
|
StzhHeading = __decorate([
|
|
1587
1657
|
ProxyCmp({
|
|
1588
|
-
inputs: ['curve', 'level']
|
|
1658
|
+
inputs: ['curve', 'htmlContent', 'level']
|
|
1589
1659
|
})
|
|
1590
1660
|
], StzhHeading);
|
|
1591
1661
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHeading, decorators: [{
|
|
@@ -1595,7 +1665,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1595
1665
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1596
1666
|
template: '<ng-content></ng-content>',
|
|
1597
1667
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1598
|
-
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'],
|
|
1599
1694
|
}]
|
|
1600
1695
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1601
1696
|
let StzhHomepageServiceHighlights = class StzhHomepageServiceHighlights {
|
|
@@ -1668,6 +1763,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1668
1763
|
inputs: ['around', 'aroundLeft', 'aroundRight', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra'],
|
|
1669
1764
|
}]
|
|
1670
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 }]; } });
|
|
1671
1790
|
let StzhIcon = class StzhIcon {
|
|
1672
1791
|
constructor(c, r, z) {
|
|
1673
1792
|
this.z = z;
|
|
@@ -2030,6 +2149,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2030
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'],
|
|
2031
2150
|
}]
|
|
2032
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 }]; } });
|
|
2033
2177
|
let StzhOlmap = class StzhOlmap {
|
|
2034
2178
|
constructor(c, r, z) {
|
|
2035
2179
|
this.z = z;
|
|
@@ -2038,12 +2182,12 @@ let StzhOlmap = class StzhOlmap {
|
|
|
2038
2182
|
proxyOutputs(this, this.el, ['stzhInitialized', 'stzhPostRender', 'stzhMoveStart', 'stzhMoveEnd', 'stzhMovePanZoom']);
|
|
2039
2183
|
}
|
|
2040
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 }); }
|
|
2041
|
-
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 }); }
|
|
2042
2186
|
};
|
|
2043
2187
|
StzhOlmap = __decorate([
|
|
2044
2188
|
ProxyCmp({
|
|
2045
|
-
inputs: ['center', 'centerMarker', 'hostname', 'layer', 'layerControl', 'layers', 'localization', 'locationControl', 'pinchRotateThreshold', 'printControl', 'resolutions', 'scaleControl', 'zoom', 'zoomLocation'],
|
|
2046
|
-
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']
|
|
2047
2191
|
})
|
|
2048
2192
|
], StzhOlmap);
|
|
2049
2193
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOlmap, decorators: [{
|
|
@@ -2053,7 +2197,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2053
2197
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2054
2198
|
template: '<ng-content></ng-content>',
|
|
2055
2199
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2056
|
-
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'],
|
|
2057
2201
|
}]
|
|
2058
2202
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2059
2203
|
let StzhOverlay = class StzhOverlay {
|
|
@@ -2420,6 +2564,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2420
2564
|
inputs: ['analyticsId', 'clickDisabled', 'current', 'disabled', 'dotted', 'first', 'hide', 'icon', 'label', 'last', 'passed', 'step'],
|
|
2421
2565
|
}]
|
|
2422
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 }]; } });
|
|
2423
2591
|
let StzhRadio = class StzhRadio {
|
|
2424
2592
|
constructor(c, r, z) {
|
|
2425
2593
|
this.z = z;
|
|
@@ -2621,11 +2789,11 @@ let StzhSearch = class StzhSearch {
|
|
|
2621
2789
|
proxyOutputs(this, this.el, ['stzhOverlayCloseClick']);
|
|
2622
2790
|
}
|
|
2623
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 }); }
|
|
2624
|
-
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 }); }
|
|
2625
2793
|
};
|
|
2626
2794
|
StzhSearch = __decorate([
|
|
2627
2795
|
ProxyCmp({
|
|
2628
|
-
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']
|
|
2629
2797
|
})
|
|
2630
2798
|
], StzhSearch);
|
|
2631
2799
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSearch, decorators: [{
|
|
@@ -2635,7 +2803,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2635
2803
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2636
2804
|
template: '<ng-content></ng-content>',
|
|
2637
2805
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2638
|
-
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'],
|
|
2639
2807
|
}]
|
|
2640
2808
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2641
2809
|
let StzhSection = class StzhSection {
|
|
@@ -2810,11 +2978,11 @@ let StzhSocialmediastream = class StzhSocialmediastream {
|
|
|
2810
2978
|
this.el = r.nativeElement;
|
|
2811
2979
|
}
|
|
2812
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 }); }
|
|
2813
|
-
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 }); }
|
|
2814
2982
|
};
|
|
2815
2983
|
StzhSocialmediastream = __decorate([
|
|
2816
2984
|
ProxyCmp({
|
|
2817
|
-
inputs: ['items']
|
|
2985
|
+
inputs: ['heading', 'headingLevel', 'items']
|
|
2818
2986
|
})
|
|
2819
2987
|
], StzhSocialmediastream);
|
|
2820
2988
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSocialmediastream, decorators: [{
|
|
@@ -2824,7 +2992,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2824
2992
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2825
2993
|
template: '<ng-content></ng-content>',
|
|
2826
2994
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2827
|
-
inputs: ['items'],
|
|
2995
|
+
inputs: ['heading', 'headingLevel', 'items'],
|
|
2828
2996
|
}]
|
|
2829
2997
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2830
2998
|
let StzhSocialmediastreamItem = class StzhSocialmediastreamItem {
|
|
@@ -2834,11 +3002,11 @@ let StzhSocialmediastreamItem = class StzhSocialmediastreamItem {
|
|
|
2834
3002
|
this.el = r.nativeElement;
|
|
2835
3003
|
}
|
|
2836
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 }); }
|
|
2837
|
-
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 }); }
|
|
2838
3006
|
};
|
|
2839
3007
|
StzhSocialmediastreamItem = __decorate([
|
|
2840
3008
|
ProxyCmp({
|
|
2841
|
-
inputs: ['item']
|
|
3009
|
+
inputs: ['dateAdapter', 'item', 'localization']
|
|
2842
3010
|
})
|
|
2843
3011
|
], StzhSocialmediastreamItem);
|
|
2844
3012
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSocialmediastreamItem, decorators: [{
|
|
@@ -2848,7 +3016,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2848
3016
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2849
3017
|
template: '<ng-content></ng-content>',
|
|
2850
3018
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2851
|
-
inputs: ['item'],
|
|
3019
|
+
inputs: ['dateAdapter', 'item', 'localization'],
|
|
2852
3020
|
}]
|
|
2853
3021
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2854
3022
|
let StzhSortable = class StzhSortable {
|
|
@@ -3329,10 +3497,12 @@ let StzhVbzConnectionFinder = class StzhVbzConnectionFinder {
|
|
|
3329
3497
|
this.el = r.nativeElement;
|
|
3330
3498
|
}
|
|
3331
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 }); }
|
|
3332
|
-
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 }); }
|
|
3333
3501
|
};
|
|
3334
3502
|
StzhVbzConnectionFinder = __decorate([
|
|
3335
|
-
ProxyCmp({
|
|
3503
|
+
ProxyCmp({
|
|
3504
|
+
inputs: ['zvvScript']
|
|
3505
|
+
})
|
|
3336
3506
|
], StzhVbzConnectionFinder);
|
|
3337
3507
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzConnectionFinder, decorators: [{
|
|
3338
3508
|
type: Component,
|
|
@@ -3341,7 +3511,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3341
3511
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3342
3512
|
template: '<ng-content></ng-content>',
|
|
3343
3513
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3344
|
-
inputs: [],
|
|
3514
|
+
inputs: ['zvvScript'],
|
|
3345
3515
|
}]
|
|
3346
3516
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3347
3517
|
let StzhVbzIntro = class StzhVbzIntro {
|
|
@@ -3528,6 +3698,8 @@ const DIRECTIVES = [
|
|
|
3528
3698
|
StzhAudio,
|
|
3529
3699
|
StzhBadge,
|
|
3530
3700
|
StzhBanner,
|
|
3701
|
+
StzhBathstatusItem,
|
|
3702
|
+
StzhBathstatusList,
|
|
3531
3703
|
StzhBreadcrumb,
|
|
3532
3704
|
StzhButton,
|
|
3533
3705
|
StzhButtongroup,
|
|
@@ -3546,6 +3718,7 @@ const DIRECTIVES = [
|
|
|
3546
3718
|
StzhChipgroup,
|
|
3547
3719
|
StzhChipselect,
|
|
3548
3720
|
StzhClamp,
|
|
3721
|
+
StzhCompanyLogo,
|
|
3549
3722
|
StzhContact,
|
|
3550
3723
|
StzhContactCv,
|
|
3551
3724
|
StzhContainer,
|
|
@@ -3577,9 +3750,11 @@ const DIRECTIVES = [
|
|
|
3577
3750
|
StzhGhettobox,
|
|
3578
3751
|
StzhHeader,
|
|
3579
3752
|
StzhHeading,
|
|
3753
|
+
StzhHomepageSearch,
|
|
3580
3754
|
StzhHomepageServiceHighlights,
|
|
3581
3755
|
StzhHr,
|
|
3582
3756
|
StzhHspace,
|
|
3757
|
+
StzhHttpError,
|
|
3583
3758
|
StzhIcon,
|
|
3584
3759
|
StzhIframe,
|
|
3585
3760
|
StzhImagecomparison,
|
|
@@ -3595,6 +3770,7 @@ const DIRECTIVES = [
|
|
|
3595
3770
|
StzhMessage,
|
|
3596
3771
|
StzhMicrositeTeaserlist,
|
|
3597
3772
|
StzhMonthyearpicker,
|
|
3773
|
+
StzhOfflineIndicator,
|
|
3598
3774
|
StzhOlmap,
|
|
3599
3775
|
StzhOverlay,
|
|
3600
3776
|
StzhPageSkiplinks,
|
|
@@ -3611,6 +3787,7 @@ const DIRECTIVES = [
|
|
|
3611
3787
|
StzhPrint,
|
|
3612
3788
|
StzhProgressbar,
|
|
3613
3789
|
StzhProgressbarItem,
|
|
3790
|
+
StzhQuote,
|
|
3614
3791
|
StzhRadio,
|
|
3615
3792
|
StzhRadiogroup,
|
|
3616
3793
|
StzhRatio,
|
|
@@ -3837,10 +4014,10 @@ const declarations = [
|
|
|
3837
4014
|
];
|
|
3838
4015
|
class StzhComponentsAngularModule {
|
|
3839
4016
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3840
|
-
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, StzhFeedreader, StzhFeedreaderItem, 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,
|
|
3841
4018
|
NumericValueAccessor,
|
|
3842
4019
|
SelectValueAccessor,
|
|
3843
|
-
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, StzhFeedreader, StzhFeedreaderItem, 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,
|
|
3844
4021
|
NumericValueAccessor,
|
|
3845
4022
|
SelectValueAccessor,
|
|
3846
4023
|
TextValueAccessor] }); }
|
|
@@ -3875,5 +4052,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3875
4052
|
* Generated bundle index. Do not edit.
|
|
3876
4053
|
*/
|
|
3877
4054
|
|
|
3878
|
-
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, StzhFeedreader, StzhFeedreaderItem, 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 };
|
|
3879
4056
|
//# sourceMappingURL=oiz-stzh-components-angular.mjs.map
|