@oiz/stzh-components-angular 3.0.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/README.md +130 -0
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/lib/stencil-generated/boolean-value-accessor.mjs +38 -0
- package/esm2022/lib/stencil-generated/index.mjs +126 -0
- package/esm2022/lib/stencil-generated/number-value-accessor.mjs +40 -0
- package/esm2022/lib/stencil-generated/proxies.mjs +2999 -0
- package/esm2022/lib/stencil-generated/select-value-accessor.mjs +35 -0
- package/esm2022/lib/stencil-generated/text-value-accessor.mjs +35 -0
- package/esm2022/lib/stencil-generated/value-accessor.mjs +40 -0
- package/esm2022/oiz-stzh-components-angular.mjs +5 -0
- package/esm2022/public-api.mjs +11 -0
- package/esm2022/stzh-components-angular.module.mjs +48 -0
- package/fesm2022/oiz-stzh-components-angular.mjs +3402 -0
- package/fesm2022/oiz-stzh-components-angular.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/lib/stencil-generated/boolean-value-accessor.d.ts +9 -0
- package/lib/stencil-generated/index.d.ts +2 -0
- package/lib/stencil-generated/number-value-accessor.d.ts +9 -0
- package/lib/stencil-generated/proxies.d.ts +1938 -0
- package/lib/stencil-generated/select-value-accessor.d.ts +8 -0
- package/lib/stencil-generated/text-value-accessor.d.ts +8 -0
- package/lib/stencil-generated/value-accessor.d.ts +18 -0
- package/package.json +32 -0
- package/public-api.d.ts +7 -0
- package/stzh-components-angular.module.d.ts +11 -0
|
@@ -0,0 +1,3402 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Directive, HostListener, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
|
+
import { __decorate } from 'tslib';
|
|
4
|
+
import { fromEvent } from 'rxjs';
|
|
5
|
+
import { defineCustomElements } from '@oiz/stzh-components/loader';
|
|
6
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
7
|
+
|
|
8
|
+
/* eslint-disable */
|
|
9
|
+
/* tslint:disable */
|
|
10
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
11
|
+
const Prototype = Cmp.prototype;
|
|
12
|
+
inputs.forEach((item) => {
|
|
13
|
+
Object.defineProperty(Prototype, item, {
|
|
14
|
+
get() {
|
|
15
|
+
return this.el[item];
|
|
16
|
+
},
|
|
17
|
+
set(val) {
|
|
18
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
19
|
+
},
|
|
20
|
+
/**
|
|
21
|
+
* In the event that proxyInputs is called
|
|
22
|
+
* multiple times re-defining these inputs
|
|
23
|
+
* will cause an error to be thrown. As a result
|
|
24
|
+
* we set configurable: true to indicate these
|
|
25
|
+
* properties can be changed.
|
|
26
|
+
*/
|
|
27
|
+
configurable: true,
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
const proxyMethods = (Cmp, methods) => {
|
|
32
|
+
const Prototype = Cmp.prototype;
|
|
33
|
+
methods.forEach((methodName) => {
|
|
34
|
+
Prototype[methodName] = function () {
|
|
35
|
+
const args = arguments;
|
|
36
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
37
|
+
};
|
|
38
|
+
});
|
|
39
|
+
};
|
|
40
|
+
const proxyOutputs = (instance, el, events) => {
|
|
41
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
42
|
+
};
|
|
43
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
44
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
45
|
+
customElements.define(tagName, customElement);
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
49
|
+
function ProxyCmp(opts) {
|
|
50
|
+
const decorator = function (cls) {
|
|
51
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
52
|
+
if (defineCustomElementFn !== undefined) {
|
|
53
|
+
defineCustomElementFn();
|
|
54
|
+
}
|
|
55
|
+
if (inputs) {
|
|
56
|
+
proxyInputs(cls, inputs);
|
|
57
|
+
}
|
|
58
|
+
if (methods) {
|
|
59
|
+
proxyMethods(cls, methods);
|
|
60
|
+
}
|
|
61
|
+
return cls;
|
|
62
|
+
};
|
|
63
|
+
return decorator;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
let StzhAccordion = class StzhAccordion {
|
|
67
|
+
constructor(c, r, z) {
|
|
68
|
+
this.z = z;
|
|
69
|
+
c.detach();
|
|
70
|
+
this.el = r.nativeElement;
|
|
71
|
+
proxyOutputs(this, this.el, ['stzhVariantChange']);
|
|
72
|
+
}
|
|
73
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhAccordion, selector: "stzh-accordion", inputs: { collapsible: "collapsible", multiselectable: "multiselectable", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
75
|
+
};
|
|
76
|
+
StzhAccordion = __decorate([
|
|
77
|
+
ProxyCmp({
|
|
78
|
+
inputs: ['collapsible', 'multiselectable', 'variant'],
|
|
79
|
+
methods: ['setItemFocus']
|
|
80
|
+
})
|
|
81
|
+
], StzhAccordion);
|
|
82
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAccordion, decorators: [{
|
|
83
|
+
type: Component,
|
|
84
|
+
args: [{
|
|
85
|
+
selector: 'stzh-accordion',
|
|
86
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
87
|
+
template: '<ng-content></ng-content>',
|
|
88
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
89
|
+
inputs: ['collapsible', 'multiselectable', 'variant'],
|
|
90
|
+
}]
|
|
91
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
92
|
+
let StzhAccordionItem = class StzhAccordionItem {
|
|
93
|
+
constructor(c, r, z) {
|
|
94
|
+
this.z = z;
|
|
95
|
+
c.detach();
|
|
96
|
+
this.el = r.nativeElement;
|
|
97
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhOpened', 'stzhClose', 'stzhClosed', 'stzhFocus', 'stzhBlur']);
|
|
98
|
+
}
|
|
99
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
100
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhAccordionItem, selector: "stzh-accordion-item", inputs: { analyticsId: "analyticsId", badge: "badge", badgeEmpty: "badgeEmpty", badgeType: "badgeType", collapsible: "collapsible", description: "description", disabled: "disabled", heading: "heading", headingLevel: "headingLevel", icon: "icon", open: "open", subtitle: "subtitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
101
|
+
};
|
|
102
|
+
StzhAccordionItem = __decorate([
|
|
103
|
+
ProxyCmp({
|
|
104
|
+
inputs: ['analyticsId', 'badge', 'badgeEmpty', 'badgeType', 'collapsible', 'description', 'disabled', 'heading', 'headingLevel', 'icon', 'open', 'subtitle', 'variant'],
|
|
105
|
+
methods: ['show', 'hide', 'toggle']
|
|
106
|
+
})
|
|
107
|
+
], StzhAccordionItem);
|
|
108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAccordionItem, decorators: [{
|
|
109
|
+
type: Component,
|
|
110
|
+
args: [{
|
|
111
|
+
selector: 'stzh-accordion-item',
|
|
112
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
113
|
+
template: '<ng-content></ng-content>',
|
|
114
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
115
|
+
inputs: ['analyticsId', 'badge', 'badgeEmpty', 'badgeType', 'collapsible', 'description', 'disabled', 'heading', 'headingLevel', 'icon', 'open', 'subtitle', 'variant'],
|
|
116
|
+
}]
|
|
117
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
118
|
+
let StzhActions = class StzhActions {
|
|
119
|
+
constructor(c, r, z) {
|
|
120
|
+
this.z = z;
|
|
121
|
+
c.detach();
|
|
122
|
+
this.el = r.nativeElement;
|
|
123
|
+
}
|
|
124
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhActions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
125
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhActions, selector: "stzh-actions", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
126
|
+
};
|
|
127
|
+
StzhActions = __decorate([
|
|
128
|
+
ProxyCmp({
|
|
129
|
+
inputs: ['variant']
|
|
130
|
+
})
|
|
131
|
+
], StzhActions);
|
|
132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhActions, decorators: [{
|
|
133
|
+
type: Component,
|
|
134
|
+
args: [{
|
|
135
|
+
selector: 'stzh-actions',
|
|
136
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
137
|
+
template: '<ng-content></ng-content>',
|
|
138
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
139
|
+
inputs: ['variant'],
|
|
140
|
+
}]
|
|
141
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
142
|
+
let StzhActionset = class StzhActionset {
|
|
143
|
+
constructor(c, r, z) {
|
|
144
|
+
this.z = z;
|
|
145
|
+
c.detach();
|
|
146
|
+
this.el = r.nativeElement;
|
|
147
|
+
proxyOutputs(this, this.el, ['stzhActionClick']);
|
|
148
|
+
}
|
|
149
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhActionset, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
150
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhActionset, selector: "stzh-actionset", inputs: { actions: "actions", localization: "localization", popoverButtonSize: "popoverButtonSize", popoverButtonVariant: "popoverButtonVariant", popoverPlacement: "popoverPlacement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
151
|
+
};
|
|
152
|
+
StzhActionset = __decorate([
|
|
153
|
+
ProxyCmp({
|
|
154
|
+
inputs: ['actions', 'localization', 'popoverButtonSize', 'popoverButtonVariant', 'popoverPlacement', 'variant']
|
|
155
|
+
})
|
|
156
|
+
], StzhActionset);
|
|
157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhActionset, decorators: [{
|
|
158
|
+
type: Component,
|
|
159
|
+
args: [{
|
|
160
|
+
selector: 'stzh-actionset',
|
|
161
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
162
|
+
template: '<ng-content></ng-content>',
|
|
163
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
164
|
+
inputs: ['actions', 'localization', 'popoverButtonSize', 'popoverButtonVariant', 'popoverPlacement', 'variant'],
|
|
165
|
+
}]
|
|
166
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
167
|
+
let StzhAmount = class StzhAmount {
|
|
168
|
+
constructor(c, r, z) {
|
|
169
|
+
this.z = z;
|
|
170
|
+
c.detach();
|
|
171
|
+
this.el = r.nativeElement;
|
|
172
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
173
|
+
}
|
|
174
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAmount, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
175
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhAmount, selector: "stzh-amount", inputs: { a11yDescribedby: "a11yDescribedby", clearable: "clearable", description: "description", descriptionLong: "descriptionLong", disabled: "disabled", error: "error", hideOptional: "hideOptional", invalid: "invalid", label: "label", labelHidden: "labelHidden", localization: "localization", maxValue: "maxValue", maxValueDropdown: "maxValueDropdown", minValue: "minValue", minValueDropdown: "minValueDropdown", name: "name", popoverPlacement: "popoverPlacement", required: "required", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
176
|
+
};
|
|
177
|
+
StzhAmount = __decorate([
|
|
178
|
+
ProxyCmp({
|
|
179
|
+
inputs: ['a11yDescribedby', 'clearable', 'description', 'descriptionLong', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'labelHidden', 'localization', 'maxValue', 'maxValueDropdown', 'minValue', 'minValueDropdown', 'name', 'popoverPlacement', 'required', 'size', 'step', 'value']
|
|
180
|
+
})
|
|
181
|
+
], StzhAmount);
|
|
182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAmount, decorators: [{
|
|
183
|
+
type: Component,
|
|
184
|
+
args: [{
|
|
185
|
+
selector: 'stzh-amount',
|
|
186
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
187
|
+
template: '<ng-content></ng-content>',
|
|
188
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
189
|
+
inputs: ['a11yDescribedby', 'clearable', 'description', 'descriptionLong', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'labelHidden', 'localization', 'maxValue', 'maxValueDropdown', 'minValue', 'minValueDropdown', 'name', 'popoverPlacement', 'required', 'size', 'step', 'value'],
|
|
190
|
+
}]
|
|
191
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
192
|
+
let StzhAnchornav = class StzhAnchornav {
|
|
193
|
+
constructor(c, r, z) {
|
|
194
|
+
this.z = z;
|
|
195
|
+
c.detach();
|
|
196
|
+
this.el = r.nativeElement;
|
|
197
|
+
proxyOutputs(this, this.el, ['stzhItemClick']);
|
|
198
|
+
}
|
|
199
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAnchornav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
200
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhAnchornav, selector: "stzh-anchornav", inputs: { items: "items", localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
201
|
+
};
|
|
202
|
+
StzhAnchornav = __decorate([
|
|
203
|
+
ProxyCmp({
|
|
204
|
+
inputs: ['items', 'localization']
|
|
205
|
+
})
|
|
206
|
+
], StzhAnchornav);
|
|
207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAnchornav, decorators: [{
|
|
208
|
+
type: Component,
|
|
209
|
+
args: [{
|
|
210
|
+
selector: 'stzh-anchornav',
|
|
211
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
212
|
+
template: '<ng-content></ng-content>',
|
|
213
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
214
|
+
inputs: ['items', 'localization'],
|
|
215
|
+
}]
|
|
216
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
217
|
+
let StzhAppointments = class StzhAppointments {
|
|
218
|
+
constructor(c, r, z) {
|
|
219
|
+
this.z = z;
|
|
220
|
+
c.detach();
|
|
221
|
+
this.el = r.nativeElement;
|
|
222
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
223
|
+
}
|
|
224
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAppointments, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
225
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhAppointments, selector: "stzh-appointments", inputs: { appointments: "appointments", appointmentsTitle: "appointmentsTitle", calendarTitle: "calendarTitle", currentDate: "currentDate", dateAdapter: "dateAdapter", localization: "localization", name: "name", showItems: "showItems", sortBy: "sortBy", stepItems: "stepItems", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
226
|
+
};
|
|
227
|
+
StzhAppointments = __decorate([
|
|
228
|
+
ProxyCmp({
|
|
229
|
+
inputs: ['appointments', 'appointmentsTitle', 'calendarTitle', 'currentDate', 'dateAdapter', 'localization', 'name', 'showItems', 'sortBy', 'stepItems', 'value']
|
|
230
|
+
})
|
|
231
|
+
], StzhAppointments);
|
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAppointments, decorators: [{
|
|
233
|
+
type: Component,
|
|
234
|
+
args: [{
|
|
235
|
+
selector: 'stzh-appointments',
|
|
236
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
237
|
+
template: '<ng-content></ng-content>',
|
|
238
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
239
|
+
inputs: ['appointments', 'appointmentsTitle', 'calendarTitle', 'currentDate', 'dateAdapter', 'localization', 'name', 'showItems', 'sortBy', 'stepItems', 'value'],
|
|
240
|
+
}]
|
|
241
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
242
|
+
let StzhArchivelist = class StzhArchivelist {
|
|
243
|
+
constructor(c, r, z) {
|
|
244
|
+
this.z = z;
|
|
245
|
+
c.detach();
|
|
246
|
+
this.el = r.nativeElement;
|
|
247
|
+
proxyOutputs(this, this.el, ['stzhItemClick']);
|
|
248
|
+
}
|
|
249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhArchivelist, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
250
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhArchivelist, selector: "stzh-archivelist", inputs: { items: "items", localization: "localization", showItems: "showItems", stepItems: "stepItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
251
|
+
};
|
|
252
|
+
StzhArchivelist = __decorate([
|
|
253
|
+
ProxyCmp({
|
|
254
|
+
inputs: ['items', 'localization', 'showItems', 'stepItems']
|
|
255
|
+
})
|
|
256
|
+
], StzhArchivelist);
|
|
257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhArchivelist, decorators: [{
|
|
258
|
+
type: Component,
|
|
259
|
+
args: [{
|
|
260
|
+
selector: 'stzh-archivelist',
|
|
261
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
262
|
+
template: '<ng-content></ng-content>',
|
|
263
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
264
|
+
inputs: ['items', 'localization', 'showItems', 'stepItems'],
|
|
265
|
+
}]
|
|
266
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
267
|
+
let StzhAudio = class StzhAudio {
|
|
268
|
+
constructor(c, r, z) {
|
|
269
|
+
this.z = z;
|
|
270
|
+
c.detach();
|
|
271
|
+
this.el = r.nativeElement;
|
|
272
|
+
proxyOutputs(this, this.el, ['stzhPlay', 'stzhPlaying', 'stzhPause', 'stzhReplay', 'stzhEnd', 'stzhEnded', 'stzhError']);
|
|
273
|
+
}
|
|
274
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAudio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
275
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhAudio, selector: "stzh-audio", inputs: { downloadAnalyticsId: "downloadAnalyticsId", localization: "localization", preload: "preload", src: "src", transcript: "transcript", transcriptAnalyticsId: "transcriptAnalyticsId", transcriptShown: "transcriptShown" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
276
|
+
};
|
|
277
|
+
StzhAudio = __decorate([
|
|
278
|
+
ProxyCmp({
|
|
279
|
+
inputs: ['downloadAnalyticsId', 'localization', 'preload', 'src', 'transcript', 'transcriptAnalyticsId', 'transcriptShown'],
|
|
280
|
+
methods: ['play', 'pause']
|
|
281
|
+
})
|
|
282
|
+
], StzhAudio);
|
|
283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhAudio, decorators: [{
|
|
284
|
+
type: Component,
|
|
285
|
+
args: [{
|
|
286
|
+
selector: 'stzh-audio',
|
|
287
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
288
|
+
template: '<ng-content></ng-content>',
|
|
289
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
290
|
+
inputs: ['downloadAnalyticsId', 'localization', 'preload', 'src', 'transcript', 'transcriptAnalyticsId', 'transcriptShown'],
|
|
291
|
+
}]
|
|
292
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
293
|
+
let StzhBadge = class StzhBadge {
|
|
294
|
+
constructor(c, r, z) {
|
|
295
|
+
this.z = z;
|
|
296
|
+
c.detach();
|
|
297
|
+
this.el = r.nativeElement;
|
|
298
|
+
}
|
|
299
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
300
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhBadge, selector: "stzh-badge", inputs: { label: "label", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
301
|
+
};
|
|
302
|
+
StzhBadge = __decorate([
|
|
303
|
+
ProxyCmp({
|
|
304
|
+
inputs: ['label', 'type']
|
|
305
|
+
})
|
|
306
|
+
], StzhBadge);
|
|
307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBadge, decorators: [{
|
|
308
|
+
type: Component,
|
|
309
|
+
args: [{
|
|
310
|
+
selector: 'stzh-badge',
|
|
311
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
312
|
+
template: '<ng-content></ng-content>',
|
|
313
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
314
|
+
inputs: ['label', 'type'],
|
|
315
|
+
}]
|
|
316
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
317
|
+
let StzhBanner = class StzhBanner {
|
|
318
|
+
constructor(c, r, z) {
|
|
319
|
+
this.z = z;
|
|
320
|
+
c.detach();
|
|
321
|
+
this.el = r.nativeElement;
|
|
322
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhClose']);
|
|
323
|
+
}
|
|
324
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
325
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhBanner, selector: "stzh-banner", inputs: { hideClose: "hideClose", label: "label", localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
326
|
+
};
|
|
327
|
+
StzhBanner = __decorate([
|
|
328
|
+
ProxyCmp({
|
|
329
|
+
inputs: ['hideClose', 'label', 'localization'],
|
|
330
|
+
methods: ['show', 'hide']
|
|
331
|
+
})
|
|
332
|
+
], StzhBanner);
|
|
333
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBanner, decorators: [{
|
|
334
|
+
type: Component,
|
|
335
|
+
args: [{
|
|
336
|
+
selector: 'stzh-banner',
|
|
337
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
338
|
+
template: '<ng-content></ng-content>',
|
|
339
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
340
|
+
inputs: ['hideClose', 'label', 'localization'],
|
|
341
|
+
}]
|
|
342
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
343
|
+
let StzhBreadcrumb = class StzhBreadcrumb {
|
|
344
|
+
constructor(c, r, z) {
|
|
345
|
+
this.z = z;
|
|
346
|
+
c.detach();
|
|
347
|
+
this.el = r.nativeElement;
|
|
348
|
+
}
|
|
349
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
350
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhBreadcrumb, selector: "stzh-breadcrumb", inputs: { expanded: "expanded", items: "items", localization: "localization", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
351
|
+
};
|
|
352
|
+
StzhBreadcrumb = __decorate([
|
|
353
|
+
ProxyCmp({
|
|
354
|
+
inputs: ['expanded', 'items', 'localization', 'variant']
|
|
355
|
+
})
|
|
356
|
+
], StzhBreadcrumb);
|
|
357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhBreadcrumb, decorators: [{
|
|
358
|
+
type: Component,
|
|
359
|
+
args: [{
|
|
360
|
+
selector: 'stzh-breadcrumb',
|
|
361
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
362
|
+
template: '<ng-content></ng-content>',
|
|
363
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
364
|
+
inputs: ['expanded', 'items', 'localization', 'variant'],
|
|
365
|
+
}]
|
|
366
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
367
|
+
let StzhButton = class StzhButton {
|
|
368
|
+
constructor(c, r, z) {
|
|
369
|
+
this.z = z;
|
|
370
|
+
c.detach();
|
|
371
|
+
this.el = r.nativeElement;
|
|
372
|
+
proxyOutputs(this, this.el, ['stzhFocus', 'stzhBlur', 'stzhChange']);
|
|
373
|
+
}
|
|
374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
375
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhButton, selector: "stzh-button", inputs: { a11yControls: "a11yControls", a11yCurrent: "a11yCurrent", a11yDescribedby: "a11yDescribedby", a11yDisabled: "a11yDisabled", a11yExpanded: "a11yExpanded", a11yLabel: "a11yLabel", a11yTabindex: "a11yTabindex", active: "active", analyticsId: "analyticsId", badge: "badge", badgeEmpty: "badgeEmpty", badgePosition: "badgePosition", badgeType: "badgeType", buttonAccesskey: "buttonAccesskey", buttonId: "buttonId", checked: "checked", defaultChecked: "defaultChecked", disabled: "disabled", download: "download", effect: "effect", fullwidth: "fullwidth", href: "href", icon: "icon", iconOnly: "iconOnly", iconPosition: "iconPosition", label: "label", localization: "localization", name: "name", noPaddingLeft: "noPaddingLeft", noPaddingRight: "noPaddingRight", rel: "rel", rounded: "rounded", showToggleIcon: "showToggleIcon", size: "size", sizeLarge: "sizeLarge", sizeMedium: "sizeMedium", sizeSmall: "sizeSmall", sizeUltra: "sizeUltra", target: "target", textAlign: "textAlign", type: "type", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
376
|
+
};
|
|
377
|
+
StzhButton = __decorate([
|
|
378
|
+
ProxyCmp({
|
|
379
|
+
inputs: ['a11yControls', 'a11yCurrent', 'a11yDescribedby', 'a11yDisabled', 'a11yExpanded', 'a11yLabel', 'a11yTabindex', 'active', 'analyticsId', 'badge', 'badgeEmpty', 'badgePosition', 'badgeType', 'buttonAccesskey', 'buttonId', 'checked', 'defaultChecked', 'disabled', 'download', 'effect', 'fullwidth', 'href', 'icon', 'iconOnly', 'iconPosition', 'label', 'localization', 'name', 'noPaddingLeft', 'noPaddingRight', 'rel', 'rounded', 'showToggleIcon', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra', 'target', 'textAlign', 'type', 'value', 'variant']
|
|
380
|
+
})
|
|
381
|
+
], StzhButton);
|
|
382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhButton, decorators: [{
|
|
383
|
+
type: Component,
|
|
384
|
+
args: [{
|
|
385
|
+
selector: 'stzh-button',
|
|
386
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
387
|
+
template: '<ng-content></ng-content>',
|
|
388
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
389
|
+
inputs: ['a11yControls', 'a11yCurrent', 'a11yDescribedby', 'a11yDisabled', 'a11yExpanded', 'a11yLabel', 'a11yTabindex', 'active', 'analyticsId', 'badge', 'badgeEmpty', 'badgePosition', 'badgeType', 'buttonAccesskey', 'buttonId', 'checked', 'defaultChecked', 'disabled', 'download', 'effect', 'fullwidth', 'href', 'icon', 'iconOnly', 'iconPosition', 'label', 'localization', 'name', 'noPaddingLeft', 'noPaddingRight', 'rel', 'rounded', 'showToggleIcon', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra', 'target', 'textAlign', 'type', 'value', 'variant'],
|
|
390
|
+
}]
|
|
391
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
392
|
+
let StzhButtongroup = class StzhButtongroup {
|
|
393
|
+
constructor(c, r, z) {
|
|
394
|
+
this.z = z;
|
|
395
|
+
c.detach();
|
|
396
|
+
this.el = r.nativeElement;
|
|
397
|
+
}
|
|
398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhButtongroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
399
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhButtongroup, selector: "stzh-buttongroup", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
400
|
+
};
|
|
401
|
+
StzhButtongroup = __decorate([
|
|
402
|
+
ProxyCmp({})
|
|
403
|
+
], StzhButtongroup);
|
|
404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhButtongroup, decorators: [{
|
|
405
|
+
type: Component,
|
|
406
|
+
args: [{
|
|
407
|
+
selector: 'stzh-buttongroup',
|
|
408
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
409
|
+
template: '<ng-content></ng-content>',
|
|
410
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
411
|
+
inputs: [],
|
|
412
|
+
}]
|
|
413
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
414
|
+
let StzhCalendar = class StzhCalendar {
|
|
415
|
+
constructor(c, r, z) {
|
|
416
|
+
this.z = z;
|
|
417
|
+
c.detach();
|
|
418
|
+
this.el = r.nativeElement;
|
|
419
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
420
|
+
}
|
|
421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
422
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCalendar, selector: "stzh-calendar", inputs: { firstDayOfWeek: "firstDayOfWeek", isDateDisabled: "isDateDisabled", localization: "localization", max: "max", min: "min", nextMonthAnalyticsId: "nextMonthAnalyticsId", prevMonthAnalyticsId: "prevMonthAnalyticsId", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
423
|
+
};
|
|
424
|
+
StzhCalendar = __decorate([
|
|
425
|
+
ProxyCmp({
|
|
426
|
+
inputs: ['firstDayOfWeek', 'isDateDisabled', 'localization', 'max', 'min', 'nextMonthAnalyticsId', 'prevMonthAnalyticsId', 'value'],
|
|
427
|
+
methods: ['setFocusedDay', 'setDate']
|
|
428
|
+
})
|
|
429
|
+
], StzhCalendar);
|
|
430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCalendar, decorators: [{
|
|
431
|
+
type: Component,
|
|
432
|
+
args: [{
|
|
433
|
+
selector: 'stzh-calendar',
|
|
434
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
435
|
+
template: '<ng-content></ng-content>',
|
|
436
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
437
|
+
inputs: ['firstDayOfWeek', 'isDateDisabled', 'localization', 'max', 'min', 'nextMonthAnalyticsId', 'prevMonthAnalyticsId', 'value'],
|
|
438
|
+
}]
|
|
439
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
440
|
+
let StzhCard = class StzhCard {
|
|
441
|
+
constructor(c, r, z) {
|
|
442
|
+
this.z = z;
|
|
443
|
+
c.detach();
|
|
444
|
+
this.el = r.nativeElement;
|
|
445
|
+
proxyOutputs(this, this.el, ['stzhClick', 'stzhCollapse', 'stzhSubtitleClick', 'stzhStarClick', 'stzhHeaderActionClick']);
|
|
446
|
+
}
|
|
447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
448
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCard, selector: "stzh-card", inputs: { analyticsId: "analyticsId", author: "author", checked: "checked", collapsed: "collapsed", collapsible: "collapsible", date: "date", dateAdapter: "dateAdapter", disabled: "disabled", footerActions: "footerActions", headerActions: "headerActions", headerActionsBadge: "headerActionsBadge", headerActionsBadgeType: "headerActionsBadgeType", heading: "heading", headingLevel: "headingLevel", hideMovementActions: "hideMovementActions", href: "href", localization: "localization", name: "name", selectable: "selectable", sortableDisabled: "sortableDisabled", starrable: "starrable", starred: "starred", subtitle: "subtitle", subtitleInteractive: "subtitleInteractive", tag: "tag", target: "target", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
449
|
+
};
|
|
450
|
+
StzhCard = __decorate([
|
|
451
|
+
ProxyCmp({
|
|
452
|
+
inputs: ['analyticsId', 'author', 'checked', 'collapsed', 'collapsible', 'date', 'dateAdapter', 'disabled', 'footerActions', 'headerActions', 'headerActionsBadge', 'headerActionsBadgeType', 'heading', 'headingLevel', 'hideMovementActions', 'href', 'localization', 'name', 'selectable', 'sortableDisabled', 'starrable', 'starred', 'subtitle', 'subtitleInteractive', 'tag', 'target', 'value', 'variant']
|
|
453
|
+
})
|
|
454
|
+
], StzhCard);
|
|
455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCard, decorators: [{
|
|
456
|
+
type: Component,
|
|
457
|
+
args: [{
|
|
458
|
+
selector: 'stzh-card',
|
|
459
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
460
|
+
template: '<ng-content></ng-content>',
|
|
461
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
462
|
+
inputs: ['analyticsId', 'author', 'checked', 'collapsed', 'collapsible', 'date', 'dateAdapter', 'disabled', 'footerActions', 'headerActions', 'headerActionsBadge', 'headerActionsBadgeType', 'heading', 'headingLevel', 'hideMovementActions', 'href', 'localization', 'name', 'selectable', 'sortableDisabled', 'starrable', 'starred', 'subtitle', 'subtitleInteractive', 'tag', 'target', 'value', 'variant'],
|
|
463
|
+
}]
|
|
464
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
465
|
+
let StzhCardNavigation = class StzhCardNavigation {
|
|
466
|
+
constructor(c, r, z) {
|
|
467
|
+
this.z = z;
|
|
468
|
+
c.detach();
|
|
469
|
+
this.el = r.nativeElement;
|
|
470
|
+
proxyOutputs(this, this.el, ['stzhClick']);
|
|
471
|
+
}
|
|
472
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
473
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardNavigation, selector: "stzh-card-navigation", inputs: { analyticsId: "analyticsId", heading: "heading", headingLevel: "headingLevel", href: "href", lead: "lead", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
474
|
+
};
|
|
475
|
+
StzhCardNavigation = __decorate([
|
|
476
|
+
ProxyCmp({
|
|
477
|
+
inputs: ['analyticsId', 'heading', 'headingLevel', 'href', 'lead', 'target']
|
|
478
|
+
})
|
|
479
|
+
], StzhCardNavigation);
|
|
480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardNavigation, decorators: [{
|
|
481
|
+
type: Component,
|
|
482
|
+
args: [{
|
|
483
|
+
selector: 'stzh-card-navigation',
|
|
484
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
485
|
+
template: '<ng-content></ng-content>',
|
|
486
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
487
|
+
inputs: ['analyticsId', 'heading', 'headingLevel', 'href', 'lead', 'target'],
|
|
488
|
+
}]
|
|
489
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
490
|
+
let StzhCardSearchresult = class StzhCardSearchresult {
|
|
491
|
+
constructor(c, r, z) {
|
|
492
|
+
this.z = z;
|
|
493
|
+
c.detach();
|
|
494
|
+
this.el = r.nativeElement;
|
|
495
|
+
proxyOutputs(this, this.el, ['stzhClick']);
|
|
496
|
+
}
|
|
497
|
+
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 }); }
|
|
498
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCardSearchresult, selector: "stzh-card-searchresult", inputs: { analyticsId: "analyticsId", breadcrumbItems: "breadcrumbItems", dateAdapter: "dateAdapter", dateline: "dateline", description: "description", download: "download", downloadHeading: "downloadHeading", downloadMeta: "downloadMeta", eventDateEnd: "eventDateEnd", eventDateStart: "eventDateStart", eventLocation: "eventLocation", heading: "heading", headingLevel: "headingLevel", href: "href", imagePosition: "imagePosition", localization: "localization", meta: "meta", tagLeft: "tagLeft", tagRight: "tagRight", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
499
|
+
};
|
|
500
|
+
StzhCardSearchresult = __decorate([
|
|
501
|
+
ProxyCmp({
|
|
502
|
+
inputs: ['analyticsId', 'breadcrumbItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'imagePosition', 'localization', 'meta', 'tagLeft', 'tagRight', 'target']
|
|
503
|
+
})
|
|
504
|
+
], StzhCardSearchresult);
|
|
505
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardSearchresult, decorators: [{
|
|
506
|
+
type: Component,
|
|
507
|
+
args: [{
|
|
508
|
+
selector: 'stzh-card-searchresult',
|
|
509
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
510
|
+
template: '<ng-content></ng-content>',
|
|
511
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
512
|
+
inputs: ['analyticsId', 'breadcrumbItems', 'dateAdapter', 'dateline', 'description', 'download', 'downloadHeading', 'downloadMeta', 'eventDateEnd', 'eventDateStart', 'eventLocation', 'heading', 'headingLevel', 'href', 'imagePosition', 'localization', 'meta', 'tagLeft', 'tagRight', 'target'],
|
|
513
|
+
}]
|
|
514
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
515
|
+
let StzhCardlist = class StzhCardlist {
|
|
516
|
+
constructor(c, r, z) {
|
|
517
|
+
this.z = z;
|
|
518
|
+
c.detach();
|
|
519
|
+
this.el = r.nativeElement;
|
|
520
|
+
proxyOutputs(this, this.el, ['stzhCollapseAll']);
|
|
521
|
+
}
|
|
522
|
+
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 }); }
|
|
523
|
+
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 }); }
|
|
524
|
+
};
|
|
525
|
+
StzhCardlist = __decorate([
|
|
526
|
+
ProxyCmp({
|
|
527
|
+
inputs: ['description', 'layout', 'localization', 'showToggleLink', 'sortableDataIdAttribute', 'sortableEnabled']
|
|
528
|
+
})
|
|
529
|
+
], StzhCardlist);
|
|
530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCardlist, decorators: [{
|
|
531
|
+
type: Component,
|
|
532
|
+
args: [{
|
|
533
|
+
selector: 'stzh-cardlist',
|
|
534
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
535
|
+
template: '<ng-content></ng-content>',
|
|
536
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
537
|
+
inputs: ['description', 'layout', 'localization', 'showToggleLink', 'sortableDataIdAttribute', 'sortableEnabled'],
|
|
538
|
+
}]
|
|
539
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
540
|
+
let StzhCarousel = class StzhCarousel {
|
|
541
|
+
constructor(c, r, z) {
|
|
542
|
+
this.z = z;
|
|
543
|
+
c.detach();
|
|
544
|
+
this.el = r.nativeElement;
|
|
545
|
+
proxyOutputs(this, this.el, ['stzhSlideStart', 'stzhSlidePassed', 'stzhSlideEnd']);
|
|
546
|
+
}
|
|
547
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
548
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCarousel, selector: "stzh-carousel", inputs: { autoplay: "autoplay", autoplayTimeout: "autoplayTimeout", disabled: "disabled", localization: "localization", noPeek: "noPeek", nonInteractive: "nonInteractive", preventAutoplayPause: "preventAutoplayPause", preventAutoplayStop: "preventAutoplayStop", preventMouseDrag: "preventMouseDrag", slide: "slide", slides: "slides", slidesLarge: "slidesLarge", slidesMedium: "slidesMedium", slidesSmall: "slidesSmall", slidesUltra: "slidesUltra", tabThrough: "tabThrough", variant: "variant", withTrack: "withTrack" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
549
|
+
};
|
|
550
|
+
StzhCarousel = __decorate([
|
|
551
|
+
ProxyCmp({
|
|
552
|
+
inputs: ['autoplay', 'autoplayTimeout', 'disabled', 'localization', 'noPeek', 'nonInteractive', 'preventAutoplayPause', 'preventAutoplayStop', 'preventMouseDrag', 'slide', 'slides', 'slidesLarge', 'slidesMedium', 'slidesSmall', 'slidesUltra', 'tabThrough', 'variant', 'withTrack'],
|
|
553
|
+
methods: ['slideTo', 'slideToPrevious', 'slideToNext']
|
|
554
|
+
})
|
|
555
|
+
], StzhCarousel);
|
|
556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCarousel, decorators: [{
|
|
557
|
+
type: Component,
|
|
558
|
+
args: [{
|
|
559
|
+
selector: 'stzh-carousel',
|
|
560
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
561
|
+
template: '<ng-content></ng-content>',
|
|
562
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
563
|
+
inputs: ['autoplay', 'autoplayTimeout', 'disabled', 'localization', 'noPeek', 'nonInteractive', 'preventAutoplayPause', 'preventAutoplayStop', 'preventMouseDrag', 'slide', 'slides', 'slidesLarge', 'slidesMedium', 'slidesSmall', 'slidesUltra', 'tabThrough', 'variant', 'withTrack'],
|
|
564
|
+
}]
|
|
565
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
566
|
+
let StzhCell = class StzhCell {
|
|
567
|
+
constructor(c, r, z) {
|
|
568
|
+
this.z = z;
|
|
569
|
+
c.detach();
|
|
570
|
+
this.el = r.nativeElement;
|
|
571
|
+
}
|
|
572
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
573
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCell, selector: "stzh-cell", inputs: { align: "align", alignSelf: "alignSelf", span: "span", spanLarge: "spanLarge", spanMedium: "spanMedium", spanSmall: "spanSmall", spanUltra: "spanUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
574
|
+
};
|
|
575
|
+
StzhCell = __decorate([
|
|
576
|
+
ProxyCmp({
|
|
577
|
+
inputs: ['align', 'alignSelf', 'span', 'spanLarge', 'spanMedium', 'spanSmall', 'spanUltra']
|
|
578
|
+
})
|
|
579
|
+
], StzhCell);
|
|
580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCell, decorators: [{
|
|
581
|
+
type: Component,
|
|
582
|
+
args: [{
|
|
583
|
+
selector: 'stzh-cell',
|
|
584
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
585
|
+
template: '<ng-content></ng-content>',
|
|
586
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
587
|
+
inputs: ['align', 'alignSelf', 'span', 'spanLarge', 'spanMedium', 'spanSmall', 'spanUltra'],
|
|
588
|
+
}]
|
|
589
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
590
|
+
let StzhChart = class StzhChart {
|
|
591
|
+
constructor(c, r, z) {
|
|
592
|
+
this.z = z;
|
|
593
|
+
c.detach();
|
|
594
|
+
this.el = r.nativeElement;
|
|
595
|
+
}
|
|
596
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
597
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhChart, selector: "stzh-chart", inputs: { chartId: "chartId", create: "create" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
598
|
+
};
|
|
599
|
+
StzhChart = __decorate([
|
|
600
|
+
ProxyCmp({
|
|
601
|
+
inputs: ['chartId', 'create']
|
|
602
|
+
})
|
|
603
|
+
], StzhChart);
|
|
604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhChart, decorators: [{
|
|
605
|
+
type: Component,
|
|
606
|
+
args: [{
|
|
607
|
+
selector: 'stzh-chart',
|
|
608
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
609
|
+
template: '<ng-content></ng-content>',
|
|
610
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
611
|
+
inputs: ['chartId', 'create'],
|
|
612
|
+
}]
|
|
613
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
614
|
+
let StzhCheckbox = class StzhCheckbox {
|
|
615
|
+
constructor(c, r, z) {
|
|
616
|
+
this.z = z;
|
|
617
|
+
c.detach();
|
|
618
|
+
this.el = r.nativeElement;
|
|
619
|
+
proxyOutputs(this, this.el, ['stzhChange', 'stzhFocus', 'stzhBlur']);
|
|
620
|
+
}
|
|
621
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
622
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCheckbox, selector: "stzh-checkbox", inputs: { a11yDescribedby: "a11yDescribedby", checked: "checked", defaultChecked: "defaultChecked", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", disabled: "disabled", error: "error", hideOptional: "hideOptional", invalid: "invalid", label: "label", localization: "localization", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
623
|
+
};
|
|
624
|
+
StzhCheckbox = __decorate([
|
|
625
|
+
ProxyCmp({
|
|
626
|
+
inputs: ['a11yDescribedby', 'checked', 'defaultChecked', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'name', 'required', 'value']
|
|
627
|
+
})
|
|
628
|
+
], StzhCheckbox);
|
|
629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCheckbox, decorators: [{
|
|
630
|
+
type: Component,
|
|
631
|
+
args: [{
|
|
632
|
+
selector: 'stzh-checkbox',
|
|
633
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
634
|
+
template: '<ng-content></ng-content>',
|
|
635
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
636
|
+
inputs: ['a11yDescribedby', 'checked', 'defaultChecked', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'name', 'required', 'value'],
|
|
637
|
+
}]
|
|
638
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
639
|
+
let StzhCheckboxgroup = class StzhCheckboxgroup {
|
|
640
|
+
constructor(c, r, z) {
|
|
641
|
+
this.z = z;
|
|
642
|
+
c.detach();
|
|
643
|
+
this.el = r.nativeElement;
|
|
644
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
645
|
+
}
|
|
646
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCheckboxgroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
647
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCheckboxgroup, selector: "stzh-checkboxgroup", inputs: { checkedCheckbox: "checkedCheckbox", defaultValue: "defaultValue", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", direction: "direction", disabled: "disabled", error: "error", hideLegend: "hideLegend", hideOptional: "hideOptional", invalid: "invalid", legend: "legend", localization: "localization", name: "name", preventUpdateProperties: "preventUpdateProperties", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
648
|
+
};
|
|
649
|
+
StzhCheckboxgroup = __decorate([
|
|
650
|
+
ProxyCmp({
|
|
651
|
+
inputs: ['checkedCheckbox', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'direction', 'disabled', 'error', 'hideLegend', 'hideOptional', 'invalid', 'legend', 'localization', 'name', 'preventUpdateProperties', 'value']
|
|
652
|
+
})
|
|
653
|
+
], StzhCheckboxgroup);
|
|
654
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCheckboxgroup, decorators: [{
|
|
655
|
+
type: Component,
|
|
656
|
+
args: [{
|
|
657
|
+
selector: 'stzh-checkboxgroup',
|
|
658
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
659
|
+
template: '<ng-content></ng-content>',
|
|
660
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
661
|
+
inputs: ['checkedCheckbox', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'direction', 'disabled', 'error', 'hideLegend', 'hideOptional', 'invalid', 'legend', 'localization', 'name', 'preventUpdateProperties', 'value'],
|
|
662
|
+
}]
|
|
663
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
664
|
+
let StzhChip = class StzhChip {
|
|
665
|
+
constructor(c, r, z) {
|
|
666
|
+
this.z = z;
|
|
667
|
+
c.detach();
|
|
668
|
+
this.el = r.nativeElement;
|
|
669
|
+
proxyOutputs(this, this.el, ['stzhClick', 'stzhRemove', 'stzhFocus', 'stzhBlur']);
|
|
670
|
+
}
|
|
671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
672
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhChip, selector: "stzh-chip", inputs: { a11yDescribedby: "a11yDescribedby", a11yLabel: "a11yLabel", a11yTabindex: "a11yTabindex", active: "active", analyticsId: "analyticsId", counter: "counter", disabled: "disabled", href: "href", icon: "icon", inverted: "inverted", label: "label", nonInteractive: "nonInteractive", removable: "removable", removeAnalyticsId: "removeAnalyticsId", removeLabel: "removeLabel", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
673
|
+
};
|
|
674
|
+
StzhChip = __decorate([
|
|
675
|
+
ProxyCmp({
|
|
676
|
+
inputs: ['a11yDescribedby', 'a11yLabel', 'a11yTabindex', 'active', 'analyticsId', 'counter', 'disabled', 'href', 'icon', 'inverted', 'label', 'nonInteractive', 'removable', 'removeAnalyticsId', 'removeLabel', 'size', 'target', 'type', 'variant']
|
|
677
|
+
})
|
|
678
|
+
], StzhChip);
|
|
679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhChip, decorators: [{
|
|
680
|
+
type: Component,
|
|
681
|
+
args: [{
|
|
682
|
+
selector: 'stzh-chip',
|
|
683
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
684
|
+
template: '<ng-content></ng-content>',
|
|
685
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
686
|
+
inputs: ['a11yDescribedby', 'a11yLabel', 'a11yTabindex', 'active', 'analyticsId', 'counter', 'disabled', 'href', 'icon', 'inverted', 'label', 'nonInteractive', 'removable', 'removeAnalyticsId', 'removeLabel', 'size', 'target', 'type', 'variant'],
|
|
687
|
+
}]
|
|
688
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
689
|
+
let StzhChipSelect = class StzhChipSelect {
|
|
690
|
+
constructor(c, r, z) {
|
|
691
|
+
this.z = z;
|
|
692
|
+
c.detach();
|
|
693
|
+
this.el = r.nativeElement;
|
|
694
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
695
|
+
}
|
|
696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhChipSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
697
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhChipSelect, selector: "stzh-chip-select", inputs: { a11yDescribedby: "a11yDescribedby", data: "data", defaultValue: "defaultValue", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", disabled: "disabled", error: "error", hideOptional: "hideOptional", invalid: "invalid", label: "label", localization: "localization", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
698
|
+
};
|
|
699
|
+
StzhChipSelect = __decorate([
|
|
700
|
+
ProxyCmp({
|
|
701
|
+
inputs: ['a11yDescribedby', 'data', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'name', 'required', 'value']
|
|
702
|
+
})
|
|
703
|
+
], StzhChipSelect);
|
|
704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhChipSelect, decorators: [{
|
|
705
|
+
type: Component,
|
|
706
|
+
args: [{
|
|
707
|
+
selector: 'stzh-chip-select',
|
|
708
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
709
|
+
template: '<ng-content></ng-content>',
|
|
710
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
711
|
+
inputs: ['a11yDescribedby', 'data', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'name', 'required', 'value'],
|
|
712
|
+
}]
|
|
713
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
714
|
+
let StzhClamp = class StzhClamp {
|
|
715
|
+
constructor(c, r, z) {
|
|
716
|
+
this.z = z;
|
|
717
|
+
c.detach();
|
|
718
|
+
this.el = r.nativeElement;
|
|
719
|
+
proxyOutputs(this, this.el, ['stzhClamp', 'stzhExpand']);
|
|
720
|
+
}
|
|
721
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhClamp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
722
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhClamp, selector: "stzh-clamp", inputs: { clamped: "clamped", expanded: "expanded", lines: "lines", linesLarge: "linesLarge", linesMedium: "linesMedium", linesSmall: "linesSmall", linesUltra: "linesUltra", localization: "localization", showExpandLink: "showExpandLink" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
723
|
+
};
|
|
724
|
+
StzhClamp = __decorate([
|
|
725
|
+
ProxyCmp({
|
|
726
|
+
inputs: ['clamped', 'expanded', 'lines', 'linesLarge', 'linesMedium', 'linesSmall', 'linesUltra', 'localization', 'showExpandLink'],
|
|
727
|
+
methods: ['update']
|
|
728
|
+
})
|
|
729
|
+
], StzhClamp);
|
|
730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhClamp, decorators: [{
|
|
731
|
+
type: Component,
|
|
732
|
+
args: [{
|
|
733
|
+
selector: 'stzh-clamp',
|
|
734
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
735
|
+
template: '<ng-content></ng-content>',
|
|
736
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
737
|
+
inputs: ['clamped', 'expanded', 'lines', 'linesLarge', 'linesMedium', 'linesSmall', 'linesUltra', 'localization', 'showExpandLink'],
|
|
738
|
+
}]
|
|
739
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
740
|
+
let StzhContact = class StzhContact {
|
|
741
|
+
constructor(c, r, z) {
|
|
742
|
+
this.z = z;
|
|
743
|
+
c.detach();
|
|
744
|
+
this.el = r.nativeElement;
|
|
745
|
+
}
|
|
746
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhContact, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
747
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhContact, selector: "stzh-contact", inputs: { address: "address", availability: "availability", availabilityTitle: "availabilityTitle", availabilityTitleLevel: "availabilityTitleLevel", emails: "emails", heading: "heading", headingLevel: "headingLevel", location: "location", mainHeading: "mainHeading", mainHeadingLevel: "mainHeadingLevel", name: "name", numbers: "numbers", pobox: "pobox", poboxHeading: "poboxHeading", poboxLocation: "poboxLocation", poboxPostalCode: "poboxPostalCode", poboxTitle: "poboxTitle", postalCode: "postalCode", street: "street", streetInfo: "streetInfo", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
748
|
+
};
|
|
749
|
+
StzhContact = __decorate([
|
|
750
|
+
ProxyCmp({
|
|
751
|
+
inputs: ['address', 'availability', 'availabilityTitle', 'availabilityTitleLevel', 'emails', 'heading', 'headingLevel', 'location', 'mainHeading', 'mainHeadingLevel', 'name', 'numbers', 'pobox', 'poboxHeading', 'poboxLocation', 'poboxPostalCode', 'poboxTitle', 'postalCode', 'street', 'streetInfo', 'type']
|
|
752
|
+
})
|
|
753
|
+
], StzhContact);
|
|
754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhContact, decorators: [{
|
|
755
|
+
type: Component,
|
|
756
|
+
args: [{
|
|
757
|
+
selector: 'stzh-contact',
|
|
758
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
759
|
+
template: '<ng-content></ng-content>',
|
|
760
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
761
|
+
inputs: ['address', 'availability', 'availabilityTitle', 'availabilityTitleLevel', 'emails', 'heading', 'headingLevel', 'location', 'mainHeading', 'mainHeadingLevel', 'name', 'numbers', 'pobox', 'poboxHeading', 'poboxLocation', 'poboxPostalCode', 'poboxTitle', 'postalCode', 'street', 'streetInfo', 'type'],
|
|
762
|
+
}]
|
|
763
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
764
|
+
let StzhContainer = class StzhContainer {
|
|
765
|
+
constructor(c, r, z) {
|
|
766
|
+
this.z = z;
|
|
767
|
+
c.detach();
|
|
768
|
+
this.el = r.nativeElement;
|
|
769
|
+
}
|
|
770
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
771
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhContainer, selector: "stzh-container", inputs: { noMargin: "noMargin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
772
|
+
};
|
|
773
|
+
StzhContainer = __decorate([
|
|
774
|
+
ProxyCmp({
|
|
775
|
+
inputs: ['noMargin']
|
|
776
|
+
})
|
|
777
|
+
], StzhContainer);
|
|
778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhContainer, decorators: [{
|
|
779
|
+
type: Component,
|
|
780
|
+
args: [{
|
|
781
|
+
selector: 'stzh-container',
|
|
782
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
783
|
+
template: '<ng-content></ng-content>',
|
|
784
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
785
|
+
inputs: ['noMargin'],
|
|
786
|
+
}]
|
|
787
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
788
|
+
let StzhContent = class StzhContent {
|
|
789
|
+
constructor(c, r, z) {
|
|
790
|
+
this.z = z;
|
|
791
|
+
c.detach();
|
|
792
|
+
this.el = r.nativeElement;
|
|
793
|
+
}
|
|
794
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
795
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhContent, selector: "stzh-content", inputs: { preventElementLayout: "preventElementLayout", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
796
|
+
};
|
|
797
|
+
StzhContent = __decorate([
|
|
798
|
+
ProxyCmp({
|
|
799
|
+
inputs: ['preventElementLayout', 'variant']
|
|
800
|
+
})
|
|
801
|
+
], StzhContent);
|
|
802
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhContent, decorators: [{
|
|
803
|
+
type: Component,
|
|
804
|
+
args: [{
|
|
805
|
+
selector: 'stzh-content',
|
|
806
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
807
|
+
template: '<ng-content></ng-content>',
|
|
808
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
809
|
+
inputs: ['preventElementLayout', 'variant'],
|
|
810
|
+
}]
|
|
811
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
812
|
+
let StzhCspace = class StzhCspace {
|
|
813
|
+
constructor(c, r, z) {
|
|
814
|
+
this.z = z;
|
|
815
|
+
c.detach();
|
|
816
|
+
this.el = r.nativeElement;
|
|
817
|
+
}
|
|
818
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCspace, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
819
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCspace, selector: "stzh-cspace", inputs: { preventRemoveNested: "preventRemoveNested", removeFirstMargin: "removeFirstMargin", removeLastMargin: "removeLastMargin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
820
|
+
};
|
|
821
|
+
StzhCspace = __decorate([
|
|
822
|
+
ProxyCmp({
|
|
823
|
+
inputs: ['preventRemoveNested', 'removeFirstMargin', 'removeLastMargin']
|
|
824
|
+
})
|
|
825
|
+
], StzhCspace);
|
|
826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCspace, decorators: [{
|
|
827
|
+
type: Component,
|
|
828
|
+
args: [{
|
|
829
|
+
selector: 'stzh-cspace',
|
|
830
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
831
|
+
template: '<ng-content></ng-content>',
|
|
832
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
833
|
+
inputs: ['preventRemoveNested', 'removeFirstMargin', 'removeLastMargin'],
|
|
834
|
+
}]
|
|
835
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
836
|
+
let StzhCta = class StzhCta {
|
|
837
|
+
constructor(c, r, z) {
|
|
838
|
+
this.z = z;
|
|
839
|
+
c.detach();
|
|
840
|
+
this.el = r.nativeElement;
|
|
841
|
+
proxyOutputs(this, this.el, ['stzhFocus', 'stzhBlur']);
|
|
842
|
+
}
|
|
843
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCta, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
844
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhCta, selector: "stzh-cta", inputs: { heading: "heading", href: "href", label: "label", lead: "lead", stickyDisabled: "stickyDisabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
845
|
+
};
|
|
846
|
+
StzhCta = __decorate([
|
|
847
|
+
ProxyCmp({
|
|
848
|
+
inputs: ['heading', 'href', 'label', 'lead', 'stickyDisabled']
|
|
849
|
+
})
|
|
850
|
+
], StzhCta);
|
|
851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhCta, decorators: [{
|
|
852
|
+
type: Component,
|
|
853
|
+
args: [{
|
|
854
|
+
selector: 'stzh-cta',
|
|
855
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
856
|
+
template: '<ng-content></ng-content>',
|
|
857
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
858
|
+
inputs: ['heading', 'href', 'label', 'lead', 'stickyDisabled'],
|
|
859
|
+
}]
|
|
860
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
861
|
+
let StzhDatalist = class StzhDatalist {
|
|
862
|
+
constructor(c, r, z) {
|
|
863
|
+
this.z = z;
|
|
864
|
+
c.detach();
|
|
865
|
+
this.el = r.nativeElement;
|
|
866
|
+
proxyOutputs(this, this.el, ['stzhVariantChange', 'stzhDirectionChange']);
|
|
867
|
+
}
|
|
868
|
+
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 }); }
|
|
869
|
+
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 }); }
|
|
870
|
+
};
|
|
871
|
+
StzhDatalist = __decorate([
|
|
872
|
+
ProxyCmp({
|
|
873
|
+
inputs: ['columns', 'columnsLarge', 'columnsMedium', 'columnsSmall', 'columnsUltra', 'direction', 'directionLarge', 'directionMedium', 'directionSmall', 'directionUltra', 'items', 'variant'],
|
|
874
|
+
methods: ['getCurrentDirection']
|
|
875
|
+
})
|
|
876
|
+
], StzhDatalist);
|
|
877
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatalist, decorators: [{
|
|
878
|
+
type: Component,
|
|
879
|
+
args: [{
|
|
880
|
+
selector: 'stzh-datalist',
|
|
881
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
882
|
+
template: '<ng-content></ng-content>',
|
|
883
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
884
|
+
inputs: ['columns', 'columnsLarge', 'columnsMedium', 'columnsSmall', 'columnsUltra', 'direction', 'directionLarge', 'directionMedium', 'directionSmall', 'directionUltra', 'items', 'variant'],
|
|
885
|
+
}]
|
|
886
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
887
|
+
let StzhDatalistItem = class StzhDatalistItem {
|
|
888
|
+
constructor(c, r, z) {
|
|
889
|
+
this.z = z;
|
|
890
|
+
c.detach();
|
|
891
|
+
this.el = r.nativeElement;
|
|
892
|
+
proxyOutputs(this, this.el, ['stzhItemActionClick']);
|
|
893
|
+
}
|
|
894
|
+
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 }); }
|
|
895
|
+
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", 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 }); }
|
|
896
|
+
};
|
|
897
|
+
StzhDatalistItem = __decorate([
|
|
898
|
+
ProxyCmp({
|
|
899
|
+
inputs: ['a11yControls', 'a11yExpanded', 'download', 'href', 'icon', 'iconHref', 'iconLabel', 'iconTooltip', 'label', 'leadingIcon', 'localization', 'meta', 'rel', 'statusLabel', 'statusType', 'target', 'value']
|
|
900
|
+
})
|
|
901
|
+
], StzhDatalistItem);
|
|
902
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatalistItem, decorators: [{
|
|
903
|
+
type: Component,
|
|
904
|
+
args: [{
|
|
905
|
+
selector: 'stzh-datalist-item',
|
|
906
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
907
|
+
template: '<ng-content></ng-content>',
|
|
908
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
909
|
+
inputs: ['a11yControls', 'a11yExpanded', 'download', 'href', 'icon', 'iconHref', 'iconLabel', 'iconTooltip', 'label', 'leadingIcon', 'localization', 'meta', 'rel', 'statusLabel', 'statusType', 'target', 'value'],
|
|
910
|
+
}]
|
|
911
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
912
|
+
let StzhDatamessagelist = class StzhDatamessagelist {
|
|
913
|
+
constructor(c, r, z) {
|
|
914
|
+
this.z = z;
|
|
915
|
+
c.detach();
|
|
916
|
+
this.el = r.nativeElement;
|
|
917
|
+
}
|
|
918
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatamessagelist, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
919
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatamessagelist, selector: "stzh-datamessagelist", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
920
|
+
};
|
|
921
|
+
StzhDatamessagelist = __decorate([
|
|
922
|
+
ProxyCmp({})
|
|
923
|
+
], StzhDatamessagelist);
|
|
924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatamessagelist, decorators: [{
|
|
925
|
+
type: Component,
|
|
926
|
+
args: [{
|
|
927
|
+
selector: 'stzh-datamessagelist',
|
|
928
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
929
|
+
template: '<ng-content></ng-content>',
|
|
930
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
931
|
+
inputs: [],
|
|
932
|
+
}]
|
|
933
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
934
|
+
let StzhDatamessagelistItem = class StzhDatamessagelistItem {
|
|
935
|
+
constructor(c, r, z) {
|
|
936
|
+
this.z = z;
|
|
937
|
+
c.detach();
|
|
938
|
+
this.el = r.nativeElement;
|
|
939
|
+
proxyOutputs(this, this.el, ['stzhClick', 'stzhActionClick']);
|
|
940
|
+
}
|
|
941
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatamessagelistItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
942
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatamessagelistItem, selector: "stzh-datamessagelist-item", inputs: { actions: "actions", analyticsId: "analyticsId", description: "description", heading: "heading", href: "href", icon: "icon", loadingStatus: "loadingStatus", localization: "localization", meta: "meta", rel: "rel", tags: "tags", target: "target", unread: "unread" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
943
|
+
};
|
|
944
|
+
StzhDatamessagelistItem = __decorate([
|
|
945
|
+
ProxyCmp({
|
|
946
|
+
inputs: ['actions', 'analyticsId', 'description', 'heading', 'href', 'icon', 'loadingStatus', 'localization', 'meta', 'rel', 'tags', 'target', 'unread']
|
|
947
|
+
})
|
|
948
|
+
], StzhDatamessagelistItem);
|
|
949
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatamessagelistItem, decorators: [{
|
|
950
|
+
type: Component,
|
|
951
|
+
args: [{
|
|
952
|
+
selector: 'stzh-datamessagelist-item',
|
|
953
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
954
|
+
template: '<ng-content></ng-content>',
|
|
955
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
956
|
+
inputs: ['actions', 'analyticsId', 'description', 'heading', 'href', 'icon', 'loadingStatus', 'localization', 'meta', 'rel', 'tags', 'target', 'unread'],
|
|
957
|
+
}]
|
|
958
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
959
|
+
let StzhDatatable = class StzhDatatable {
|
|
960
|
+
constructor(c, r, z) {
|
|
961
|
+
this.z = z;
|
|
962
|
+
c.detach();
|
|
963
|
+
this.el = r.nativeElement;
|
|
964
|
+
proxyOutputs(this, this.el, ['stzhRowClick', 'stzhCellClick', 'stzhHeadingCellClick', 'stzhSortClick', 'stzhSortByChange', 'stzhSortDirectionChange']);
|
|
965
|
+
}
|
|
966
|
+
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 }); }
|
|
967
|
+
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 }); }
|
|
968
|
+
};
|
|
969
|
+
StzhDatatable = __decorate([
|
|
970
|
+
ProxyCmp({
|
|
971
|
+
inputs: ['columns', 'csvDynamicTyping', 'csvHeader', 'csvUrl', 'disableMinWidth', 'hideColumnHeadings', 'hideSearch', 'idField', 'label', 'localization', 'page', 'pageSize', 'rowHeaderField', 'rows', 'showList', 'sortBy', 'sortDirection', 'tableLayout'],
|
|
972
|
+
methods: ['toggleSort']
|
|
973
|
+
})
|
|
974
|
+
], StzhDatatable);
|
|
975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatatable, decorators: [{
|
|
976
|
+
type: Component,
|
|
977
|
+
args: [{
|
|
978
|
+
selector: 'stzh-datatable',
|
|
979
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
980
|
+
template: '<ng-content></ng-content>',
|
|
981
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
982
|
+
inputs: ['columns', 'csvDynamicTyping', 'csvHeader', 'csvUrl', 'disableMinWidth', 'hideColumnHeadings', 'hideSearch', 'idField', 'label', 'localization', 'page', 'pageSize', 'rowHeaderField', 'rows', 'showList', 'sortBy', 'sortDirection', 'tableLayout'],
|
|
983
|
+
}]
|
|
984
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
985
|
+
let StzhDatepicker = class StzhDatepicker {
|
|
986
|
+
constructor(c, r, z) {
|
|
987
|
+
this.z = z;
|
|
988
|
+
c.detach();
|
|
989
|
+
this.el = r.nativeElement;
|
|
990
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
991
|
+
}
|
|
992
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
993
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDatepicker, selector: "stzh-datepicker", inputs: { calendarIsDateDisabled: "calendarIsDateDisabled", calendarMax: "calendarMax", calendarMin: "calendarMin", dateAdapter: "dateAdapter", defaultValue: "defaultValue", description: "description", descriptionLong: "descriptionLong", disabled: "disabled", error: "error", hideOptional: "hideOptional", inline: "inline", internalDateAdapter: "internalDateAdapter", invalid: "invalid", label: "label", labelHidden: "labelHidden", localization: "localization", name: "name", readonly: "readonly", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
994
|
+
};
|
|
995
|
+
StzhDatepicker = __decorate([
|
|
996
|
+
ProxyCmp({
|
|
997
|
+
inputs: ['calendarIsDateDisabled', 'calendarMax', 'calendarMin', 'dateAdapter', 'defaultValue', 'description', 'descriptionLong', 'disabled', 'error', 'hideOptional', 'inline', 'internalDateAdapter', 'invalid', 'label', 'labelHidden', 'localization', 'name', 'readonly', 'required', 'size', 'value'],
|
|
998
|
+
methods: ['setDate', 'getPopover']
|
|
999
|
+
})
|
|
1000
|
+
], StzhDatepicker);
|
|
1001
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDatepicker, decorators: [{
|
|
1002
|
+
type: Component,
|
|
1003
|
+
args: [{
|
|
1004
|
+
selector: 'stzh-datepicker',
|
|
1005
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1006
|
+
template: '<ng-content></ng-content>',
|
|
1007
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1008
|
+
inputs: ['calendarIsDateDisabled', 'calendarMax', 'calendarMin', 'dateAdapter', 'defaultValue', 'description', 'descriptionLong', 'disabled', 'error', 'hideOptional', 'inline', 'internalDateAdapter', 'invalid', 'label', 'labelHidden', 'localization', 'name', 'readonly', 'required', 'size', 'value'],
|
|
1009
|
+
}]
|
|
1010
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1011
|
+
let StzhDetails = class StzhDetails {
|
|
1012
|
+
constructor(c, r, z) {
|
|
1013
|
+
this.z = z;
|
|
1014
|
+
c.detach();
|
|
1015
|
+
this.el = r.nativeElement;
|
|
1016
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhOpened', 'stzhClose', 'stzhClosed']);
|
|
1017
|
+
}
|
|
1018
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1019
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDetails, selector: "stzh-details", inputs: { open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1020
|
+
};
|
|
1021
|
+
StzhDetails = __decorate([
|
|
1022
|
+
ProxyCmp({
|
|
1023
|
+
inputs: ['open'],
|
|
1024
|
+
methods: ['show', 'hide', 'toggle']
|
|
1025
|
+
})
|
|
1026
|
+
], StzhDetails);
|
|
1027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDetails, decorators: [{
|
|
1028
|
+
type: Component,
|
|
1029
|
+
args: [{
|
|
1030
|
+
selector: 'stzh-details',
|
|
1031
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1032
|
+
template: '<ng-content></ng-content>',
|
|
1033
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1034
|
+
inputs: ['open'],
|
|
1035
|
+
}]
|
|
1036
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1037
|
+
let StzhDialog = class StzhDialog {
|
|
1038
|
+
constructor(c, r, z) {
|
|
1039
|
+
this.z = z;
|
|
1040
|
+
c.detach();
|
|
1041
|
+
this.el = r.nativeElement;
|
|
1042
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhClose']);
|
|
1043
|
+
}
|
|
1044
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1045
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDialog, selector: "stzh-dialog", inputs: { a11yLabel: "a11yLabel", a11yRole: "a11yRole", closeAnalyticsId: "closeAnalyticsId", closeOnBackdropClick: "closeOnBackdropClick", closeOnEscapeKey: "closeOnEscapeKey", heading: "heading", hideClose: "hideClose", localization: "localization", open: "open", size: "size", stay: "stay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1046
|
+
};
|
|
1047
|
+
StzhDialog = __decorate([
|
|
1048
|
+
ProxyCmp({
|
|
1049
|
+
inputs: ['a11yLabel', 'a11yRole', 'closeAnalyticsId', 'closeOnBackdropClick', 'closeOnEscapeKey', 'heading', 'hideClose', 'localization', 'open', 'size', 'stay'],
|
|
1050
|
+
methods: ['show', 'hide']
|
|
1051
|
+
})
|
|
1052
|
+
], StzhDialog);
|
|
1053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDialog, decorators: [{
|
|
1054
|
+
type: Component,
|
|
1055
|
+
args: [{
|
|
1056
|
+
selector: 'stzh-dialog',
|
|
1057
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1058
|
+
template: '<ng-content></ng-content>',
|
|
1059
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1060
|
+
inputs: ['a11yLabel', 'a11yRole', 'closeAnalyticsId', 'closeOnBackdropClick', 'closeOnEscapeKey', 'heading', 'hideClose', 'localization', 'open', 'size', 'stay'],
|
|
1061
|
+
}]
|
|
1062
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1063
|
+
let StzhDisturber = class StzhDisturber {
|
|
1064
|
+
constructor(c, r, z) {
|
|
1065
|
+
this.z = z;
|
|
1066
|
+
c.detach();
|
|
1067
|
+
this.el = r.nativeElement;
|
|
1068
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhOpened', 'stzhClose', 'stzhClosed']);
|
|
1069
|
+
}
|
|
1070
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDisturber, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1071
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDisturber, selector: "stzh-disturber", inputs: { closeKey: "closeKey", hideClose: "hideClose", initialOpenAnimation: "initialOpenAnimation", label: "label", localization: "localization", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1072
|
+
};
|
|
1073
|
+
StzhDisturber = __decorate([
|
|
1074
|
+
ProxyCmp({
|
|
1075
|
+
inputs: ['closeKey', 'hideClose', 'initialOpenAnimation', 'label', 'localization', 'open'],
|
|
1076
|
+
methods: ['show', 'hide']
|
|
1077
|
+
})
|
|
1078
|
+
], StzhDisturber);
|
|
1079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDisturber, decorators: [{
|
|
1080
|
+
type: Component,
|
|
1081
|
+
args: [{
|
|
1082
|
+
selector: 'stzh-disturber',
|
|
1083
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1084
|
+
template: '<ng-content></ng-content>',
|
|
1085
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1086
|
+
inputs: ['closeKey', 'hideClose', 'initialOpenAnimation', 'label', 'localization', 'open'],
|
|
1087
|
+
}]
|
|
1088
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1089
|
+
let StzhDropdown = class StzhDropdown {
|
|
1090
|
+
constructor(c, r, z) {
|
|
1091
|
+
this.z = z;
|
|
1092
|
+
c.detach();
|
|
1093
|
+
this.el = r.nativeElement;
|
|
1094
|
+
proxyOutputs(this, this.el, ['stzhChange', 'stzhItemAdd', 'stzhItemRemove', 'stzhOptionAdd', 'stzhOptionRemove', 'stzhOpen', 'stzhClose', 'stzhFocus', 'stzhBlur', 'stzhInit']);
|
|
1095
|
+
}
|
|
1096
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1097
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhDropdown, selector: "stzh-dropdown", inputs: { a11yDescribedby: "a11yDescribedby", allowEmptyOption: "allowEmptyOption", closeAfterSelect: "closeAfterSelect", defaultItems: "defaultItems", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", disabled: "disabled", error: "error", hideOptional: "hideOptional", icon: "icon", iconAngle: "iconAngle", inline: "inline", invalid: "invalid", isOpen: "isOpen", items: "items", label: "label", labelField: "labelField", labelHidden: "labelHidden", load: "load", loadThrottle: "loadThrottle", localization: "localization", lockOptgroupOrder: "lockOptgroupOrder", maxOptions: "maxOptions", minCharacters: "minCharacters", multiple: "multiple", name: "name", noBackspaceDelete: "noBackspaceDelete", noSearch: "noSearch", open: "open", openOnFocus: "openOnFocus", optgroupField: "optgroupField", optgroupLabelField: "optgroupLabelField", optgroupValueField: "optgroupValueField", optgroups: "optgroups", options: "options", popoverFullwidth: "popoverFullwidth", popoverPlacement: "popoverPlacement", preload: "preload", required: "required", searchConjunction: "searchConjunction", searchField: "searchField", size: "size", transformLoadQuery: "transformLoadQuery", value: "value", valueField: "valueField", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1098
|
+
};
|
|
1099
|
+
StzhDropdown = __decorate([
|
|
1100
|
+
ProxyCmp({
|
|
1101
|
+
inputs: ['a11yDescribedby', 'allowEmptyOption', 'closeAfterSelect', 'defaultItems', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'icon', 'iconAngle', 'inline', 'invalid', 'isOpen', 'items', 'label', 'labelField', 'labelHidden', 'load', 'loadThrottle', 'localization', 'lockOptgroupOrder', 'maxOptions', 'minCharacters', 'multiple', 'name', 'noBackspaceDelete', 'noSearch', 'open', 'openOnFocus', 'optgroupField', 'optgroupLabelField', 'optgroupValueField', 'optgroups', 'options', 'popoverFullwidth', 'popoverPlacement', 'preload', 'required', 'searchConjunction', 'searchField', 'size', 'transformLoadQuery', 'value', 'valueField', 'variant'],
|
|
1102
|
+
methods: ['getValue', 'setValue', 'resetLoadedSearches', 'getLoadedSearches', 'getItems', 'loadItems', 'show', 'hide']
|
|
1103
|
+
})
|
|
1104
|
+
], StzhDropdown);
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhDropdown, decorators: [{
|
|
1106
|
+
type: Component,
|
|
1107
|
+
args: [{
|
|
1108
|
+
selector: 'stzh-dropdown',
|
|
1109
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1110
|
+
template: '<ng-content></ng-content>',
|
|
1111
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1112
|
+
inputs: ['a11yDescribedby', 'allowEmptyOption', 'closeAfterSelect', 'defaultItems', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'icon', 'iconAngle', 'inline', 'invalid', 'isOpen', 'items', 'label', 'labelField', 'labelHidden', 'load', 'loadThrottle', 'localization', 'lockOptgroupOrder', 'maxOptions', 'minCharacters', 'multiple', 'name', 'noBackspaceDelete', 'noSearch', 'open', 'openOnFocus', 'optgroupField', 'optgroupLabelField', 'optgroupValueField', 'optgroups', 'options', 'popoverFullwidth', 'popoverPlacement', 'preload', 'required', 'searchConjunction', 'searchField', 'size', 'transformLoadQuery', 'value', 'valueField', 'variant'],
|
|
1113
|
+
}]
|
|
1114
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1115
|
+
let StzhEditor = class StzhEditor {
|
|
1116
|
+
constructor(c, r, z) {
|
|
1117
|
+
this.z = z;
|
|
1118
|
+
c.detach();
|
|
1119
|
+
this.el = r.nativeElement;
|
|
1120
|
+
}
|
|
1121
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhEditor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1122
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhEditor, selector: "stzh-editor", inputs: { heading: "heading", items: "items", localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1123
|
+
};
|
|
1124
|
+
StzhEditor = __decorate([
|
|
1125
|
+
ProxyCmp({
|
|
1126
|
+
inputs: ['heading', 'items', 'localization']
|
|
1127
|
+
})
|
|
1128
|
+
], StzhEditor);
|
|
1129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhEditor, decorators: [{
|
|
1130
|
+
type: Component,
|
|
1131
|
+
args: [{
|
|
1132
|
+
selector: 'stzh-editor',
|
|
1133
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1134
|
+
template: '<ng-content></ng-content>',
|
|
1135
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1136
|
+
inputs: ['heading', 'items', 'localization'],
|
|
1137
|
+
}]
|
|
1138
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1139
|
+
let StzhEventinfo = class StzhEventinfo {
|
|
1140
|
+
constructor(c, r, z) {
|
|
1141
|
+
this.z = z;
|
|
1142
|
+
c.detach();
|
|
1143
|
+
this.el = r.nativeElement;
|
|
1144
|
+
}
|
|
1145
|
+
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 }); }
|
|
1146
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhEventinfo, selector: "stzh-eventinfo", inputs: { dateAdapter: "dateAdapter", items: "items", localization: "localization", monthHeadingLevel: "monthHeadingLevel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1147
|
+
};
|
|
1148
|
+
StzhEventinfo = __decorate([
|
|
1149
|
+
ProxyCmp({
|
|
1150
|
+
inputs: ['dateAdapter', 'items', 'localization', 'monthHeadingLevel']
|
|
1151
|
+
})
|
|
1152
|
+
], StzhEventinfo);
|
|
1153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhEventinfo, decorators: [{
|
|
1154
|
+
type: Component,
|
|
1155
|
+
args: [{
|
|
1156
|
+
selector: 'stzh-eventinfo',
|
|
1157
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1158
|
+
template: '<ng-content></ng-content>',
|
|
1159
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1160
|
+
inputs: ['dateAdapter', 'items', 'localization', 'monthHeadingLevel'],
|
|
1161
|
+
}]
|
|
1162
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1163
|
+
let StzhFieldset = class StzhFieldset {
|
|
1164
|
+
constructor(c, r, z) {
|
|
1165
|
+
this.z = z;
|
|
1166
|
+
c.detach();
|
|
1167
|
+
this.el = r.nativeElement;
|
|
1168
|
+
}
|
|
1169
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFieldset, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1170
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhFieldset, selector: "stzh-fieldset", inputs: { hideLegend: "hideLegend", legend: "legend", legendCurve: "legendCurve", legendLevel: "legendLevel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1171
|
+
};
|
|
1172
|
+
StzhFieldset = __decorate([
|
|
1173
|
+
ProxyCmp({
|
|
1174
|
+
inputs: ['hideLegend', 'legend', 'legendCurve', 'legendLevel']
|
|
1175
|
+
})
|
|
1176
|
+
], StzhFieldset);
|
|
1177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFieldset, decorators: [{
|
|
1178
|
+
type: Component,
|
|
1179
|
+
args: [{
|
|
1180
|
+
selector: 'stzh-fieldset',
|
|
1181
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1182
|
+
template: '<ng-content></ng-content>',
|
|
1183
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1184
|
+
inputs: ['hideLegend', 'legend', 'legendCurve', 'legendLevel'],
|
|
1185
|
+
}]
|
|
1186
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1187
|
+
let StzhFigure = class StzhFigure {
|
|
1188
|
+
constructor(c, r, z) {
|
|
1189
|
+
this.z = z;
|
|
1190
|
+
c.detach();
|
|
1191
|
+
this.el = r.nativeElement;
|
|
1192
|
+
}
|
|
1193
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFigure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1194
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhFigure, selector: "stzh-figure", inputs: { caption: "caption", copyright: "copyright", counter: "counter", fullwidth: "fullwidth", heading: "heading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1195
|
+
};
|
|
1196
|
+
StzhFigure = __decorate([
|
|
1197
|
+
ProxyCmp({
|
|
1198
|
+
inputs: ['caption', 'copyright', 'counter', 'fullwidth', 'heading']
|
|
1199
|
+
})
|
|
1200
|
+
], StzhFigure);
|
|
1201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFigure, decorators: [{
|
|
1202
|
+
type: Component,
|
|
1203
|
+
args: [{
|
|
1204
|
+
selector: 'stzh-figure',
|
|
1205
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1206
|
+
template: '<ng-content></ng-content>',
|
|
1207
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1208
|
+
inputs: ['caption', 'copyright', 'counter', 'fullwidth', 'heading'],
|
|
1209
|
+
}]
|
|
1210
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1211
|
+
let StzhFlyingfocus = class StzhFlyingfocus {
|
|
1212
|
+
constructor(c, r, z) {
|
|
1213
|
+
this.z = z;
|
|
1214
|
+
c.detach();
|
|
1215
|
+
this.el = r.nativeElement;
|
|
1216
|
+
}
|
|
1217
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFlyingfocus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1218
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhFlyingfocus, selector: "stzh-flyingfocus", inputs: { minimalEdgeSpace: "minimalEdgeSpace" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1219
|
+
};
|
|
1220
|
+
StzhFlyingfocus = __decorate([
|
|
1221
|
+
ProxyCmp({
|
|
1222
|
+
inputs: ['minimalEdgeSpace'],
|
|
1223
|
+
methods: ['reposition']
|
|
1224
|
+
})
|
|
1225
|
+
], StzhFlyingfocus);
|
|
1226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFlyingfocus, decorators: [{
|
|
1227
|
+
type: Component,
|
|
1228
|
+
args: [{
|
|
1229
|
+
selector: 'stzh-flyingfocus',
|
|
1230
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1231
|
+
template: '<ng-content></ng-content>',
|
|
1232
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1233
|
+
inputs: ['minimalEdgeSpace'],
|
|
1234
|
+
}]
|
|
1235
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1236
|
+
let StzhFooter = class StzhFooter {
|
|
1237
|
+
constructor(c, r, z) {
|
|
1238
|
+
this.z = z;
|
|
1239
|
+
c.detach();
|
|
1240
|
+
this.el = r.nativeElement;
|
|
1241
|
+
}
|
|
1242
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1243
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhFooter, selector: "stzh-footer", inputs: { copyright: "copyright", localization: "localization", mainUrl: "mainUrl", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1244
|
+
};
|
|
1245
|
+
StzhFooter = __decorate([
|
|
1246
|
+
ProxyCmp({
|
|
1247
|
+
inputs: ['copyright', 'localization', 'mainUrl', 'variant']
|
|
1248
|
+
})
|
|
1249
|
+
], StzhFooter);
|
|
1250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhFooter, decorators: [{
|
|
1251
|
+
type: Component,
|
|
1252
|
+
args: [{
|
|
1253
|
+
selector: 'stzh-footer',
|
|
1254
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1255
|
+
template: '<ng-content></ng-content>',
|
|
1256
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1257
|
+
inputs: ['copyright', 'localization', 'mainUrl', 'variant'],
|
|
1258
|
+
}]
|
|
1259
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1260
|
+
let StzhGallery = class StzhGallery {
|
|
1261
|
+
constructor(c, r, z) {
|
|
1262
|
+
this.z = z;
|
|
1263
|
+
c.detach();
|
|
1264
|
+
this.el = r.nativeElement;
|
|
1265
|
+
}
|
|
1266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhGallery, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1267
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhGallery, selector: "stzh-gallery", inputs: { carouselAutoplay: "carouselAutoplay", carouselAutoplayTimeout: "carouselAutoplayTimeout", carouselDisabled: "carouselDisabled", carouselWithTrack: "carouselWithTrack", images: "images", itemElement: "itemElement", localization: "localization", ratio: "ratio", ratioLarge: "ratioLarge", ratioMedium: "ratioMedium", ratioSmall: "ratioSmall", ratioUltra: "ratioUltra", showItems: "showItems", stepItems: "stepItems", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1268
|
+
};
|
|
1269
|
+
StzhGallery = __decorate([
|
|
1270
|
+
ProxyCmp({
|
|
1271
|
+
inputs: ['carouselAutoplay', 'carouselAutoplayTimeout', 'carouselDisabled', 'carouselWithTrack', 'images', 'itemElement', 'localization', 'ratio', 'ratioLarge', 'ratioMedium', 'ratioSmall', 'ratioUltra', 'showItems', 'stepItems', 'variant'],
|
|
1272
|
+
methods: ['openLightbox']
|
|
1273
|
+
})
|
|
1274
|
+
], StzhGallery);
|
|
1275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhGallery, decorators: [{
|
|
1276
|
+
type: Component,
|
|
1277
|
+
args: [{
|
|
1278
|
+
selector: 'stzh-gallery',
|
|
1279
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1280
|
+
template: '<ng-content></ng-content>',
|
|
1281
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1282
|
+
inputs: ['carouselAutoplay', 'carouselAutoplayTimeout', 'carouselDisabled', 'carouselWithTrack', 'images', 'itemElement', 'localization', 'ratio', 'ratioLarge', 'ratioMedium', 'ratioSmall', 'ratioUltra', 'showItems', 'stepItems', 'variant'],
|
|
1283
|
+
}]
|
|
1284
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1285
|
+
let StzhGhettobox = class StzhGhettobox {
|
|
1286
|
+
constructor(c, r, z) {
|
|
1287
|
+
this.z = z;
|
|
1288
|
+
c.detach();
|
|
1289
|
+
this.el = r.nativeElement;
|
|
1290
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhClose']);
|
|
1291
|
+
}
|
|
1292
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhGhettobox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1293
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhGhettobox, selector: "stzh-ghettobox", inputs: { description: "description", hiddenTitle: "hiddenTitle", hideClose: "hideClose", localization: "localization", mainTitle: "mainTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1294
|
+
};
|
|
1295
|
+
StzhGhettobox = __decorate([
|
|
1296
|
+
ProxyCmp({
|
|
1297
|
+
inputs: ['description', 'hiddenTitle', 'hideClose', 'localization', 'mainTitle'],
|
|
1298
|
+
methods: ['show', 'hide']
|
|
1299
|
+
})
|
|
1300
|
+
], StzhGhettobox);
|
|
1301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhGhettobox, decorators: [{
|
|
1302
|
+
type: Component,
|
|
1303
|
+
args: [{
|
|
1304
|
+
selector: 'stzh-ghettobox',
|
|
1305
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1306
|
+
template: '<ng-content></ng-content>',
|
|
1307
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1308
|
+
inputs: ['description', 'hiddenTitle', 'hideClose', 'localization', 'mainTitle'],
|
|
1309
|
+
}]
|
|
1310
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1311
|
+
let StzhHeader = class StzhHeader {
|
|
1312
|
+
constructor(c, r, z) {
|
|
1313
|
+
this.z = z;
|
|
1314
|
+
c.detach();
|
|
1315
|
+
this.el = r.nativeElement;
|
|
1316
|
+
proxyOutputs(this, this.el, ['stzhMetanavItemClick', 'stzhLanguageChange', 'stzhSearchChange', 'stzhSearchChanged']);
|
|
1317
|
+
}
|
|
1318
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1319
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhHeader, selector: "stzh-header", inputs: { href: "href", languageActive: "languageActive", languageId: "languageId", languagePreventUrlchange: "languagePreventUrlchange", languageStay: "languageStay", languages: "languages", localization: "localization", logoAnalyticsId: "logoAnalyticsId", logoType: "logoType", menuBackLabel: "menuBackLabel", menuId: "menuId", menuItems: "menuItems", metanavId: "metanavId", metanavItems: "metanavItems", searchAction: "searchAction", searchFieldName: "searchFieldName", searchId: "searchId", searchValue: "searchValue", sticky: "sticky" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1320
|
+
};
|
|
1321
|
+
StzhHeader = __decorate([
|
|
1322
|
+
ProxyCmp({
|
|
1323
|
+
inputs: ['href', 'languageActive', 'languageId', 'languagePreventUrlchange', 'languageStay', 'languages', 'localization', 'logoAnalyticsId', 'logoType', 'menuBackLabel', 'menuId', 'menuItems', 'metanavId', 'metanavItems', 'searchAction', 'searchFieldName', 'searchId', 'searchValue', 'sticky'],
|
|
1324
|
+
methods: ['updatePosition']
|
|
1325
|
+
})
|
|
1326
|
+
], StzhHeader);
|
|
1327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHeader, decorators: [{
|
|
1328
|
+
type: Component,
|
|
1329
|
+
args: [{
|
|
1330
|
+
selector: 'stzh-header',
|
|
1331
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1332
|
+
template: '<ng-content></ng-content>',
|
|
1333
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1334
|
+
inputs: ['href', 'languageActive', 'languageId', 'languagePreventUrlchange', 'languageStay', 'languages', 'localization', 'logoAnalyticsId', 'logoType', 'menuBackLabel', 'menuId', 'menuItems', 'metanavId', 'metanavItems', 'searchAction', 'searchFieldName', 'searchId', 'searchValue', 'sticky'],
|
|
1335
|
+
}]
|
|
1336
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1337
|
+
let StzhHeading = class StzhHeading {
|
|
1338
|
+
constructor(c, r, z) {
|
|
1339
|
+
this.z = z;
|
|
1340
|
+
c.detach();
|
|
1341
|
+
this.el = r.nativeElement;
|
|
1342
|
+
}
|
|
1343
|
+
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 }); }
|
|
1344
|
+
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 }); }
|
|
1345
|
+
};
|
|
1346
|
+
StzhHeading = __decorate([
|
|
1347
|
+
ProxyCmp({
|
|
1348
|
+
inputs: ['curve', 'level']
|
|
1349
|
+
})
|
|
1350
|
+
], StzhHeading);
|
|
1351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHeading, decorators: [{
|
|
1352
|
+
type: Component,
|
|
1353
|
+
args: [{
|
|
1354
|
+
selector: 'stzh-heading',
|
|
1355
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1356
|
+
template: '<ng-content></ng-content>',
|
|
1357
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1358
|
+
inputs: ['curve', 'level'],
|
|
1359
|
+
}]
|
|
1360
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1361
|
+
let StzhHr = class StzhHr {
|
|
1362
|
+
constructor(c, r, z) {
|
|
1363
|
+
this.z = z;
|
|
1364
|
+
c.detach();
|
|
1365
|
+
this.el = r.nativeElement;
|
|
1366
|
+
}
|
|
1367
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHr, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1368
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhHr, selector: "stzh-hr", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1369
|
+
};
|
|
1370
|
+
StzhHr = __decorate([
|
|
1371
|
+
ProxyCmp({})
|
|
1372
|
+
], StzhHr);
|
|
1373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHr, decorators: [{
|
|
1374
|
+
type: Component,
|
|
1375
|
+
args: [{
|
|
1376
|
+
selector: 'stzh-hr',
|
|
1377
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1378
|
+
template: '<ng-content></ng-content>',
|
|
1379
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1380
|
+
inputs: [],
|
|
1381
|
+
}]
|
|
1382
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1383
|
+
let StzhHspace = class StzhHspace {
|
|
1384
|
+
constructor(c, r, z) {
|
|
1385
|
+
this.z = z;
|
|
1386
|
+
c.detach();
|
|
1387
|
+
this.el = r.nativeElement;
|
|
1388
|
+
}
|
|
1389
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHspace, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1390
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhHspace, selector: "stzh-hspace", inputs: { around: "around", aroundLeft: "aroundLeft", aroundRight: "aroundRight", border: "border", curve: "curve", items: "items", justify: "justify", size: "size", sizeLarge: "sizeLarge", sizeMedium: "sizeMedium", sizeSmall: "sizeSmall", sizeUltra: "sizeUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1391
|
+
};
|
|
1392
|
+
StzhHspace = __decorate([
|
|
1393
|
+
ProxyCmp({
|
|
1394
|
+
inputs: ['around', 'aroundLeft', 'aroundRight', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra']
|
|
1395
|
+
})
|
|
1396
|
+
], StzhHspace);
|
|
1397
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhHspace, decorators: [{
|
|
1398
|
+
type: Component,
|
|
1399
|
+
args: [{
|
|
1400
|
+
selector: 'stzh-hspace',
|
|
1401
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1402
|
+
template: '<ng-content></ng-content>',
|
|
1403
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1404
|
+
inputs: ['around', 'aroundLeft', 'aroundRight', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra'],
|
|
1405
|
+
}]
|
|
1406
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1407
|
+
let StzhIcon = class StzhIcon {
|
|
1408
|
+
constructor(c, r, z) {
|
|
1409
|
+
this.z = z;
|
|
1410
|
+
c.detach();
|
|
1411
|
+
this.el = r.nativeElement;
|
|
1412
|
+
}
|
|
1413
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1414
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhIcon, selector: "stzh-icon", inputs: { a11yTitle: "a11yTitle", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1415
|
+
};
|
|
1416
|
+
StzhIcon = __decorate([
|
|
1417
|
+
ProxyCmp({
|
|
1418
|
+
inputs: ['a11yTitle', 'name']
|
|
1419
|
+
})
|
|
1420
|
+
], StzhIcon);
|
|
1421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhIcon, decorators: [{
|
|
1422
|
+
type: Component,
|
|
1423
|
+
args: [{
|
|
1424
|
+
selector: 'stzh-icon',
|
|
1425
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1426
|
+
template: '<ng-content></ng-content>',
|
|
1427
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1428
|
+
inputs: ['a11yTitle', 'name'],
|
|
1429
|
+
}]
|
|
1430
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1431
|
+
let StzhIframe = class StzhIframe {
|
|
1432
|
+
constructor(c, r, z) {
|
|
1433
|
+
this.z = z;
|
|
1434
|
+
c.detach();
|
|
1435
|
+
this.el = r.nativeElement;
|
|
1436
|
+
proxyOutputs(this, this.el, ['stzhPreviewSkip', 'stzhViewChange']);
|
|
1437
|
+
}
|
|
1438
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhIframe, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1439
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhIframe, selector: "stzh-iframe", inputs: { cookie: "cookie", cookieConfirmIcon: "cookieConfirmIcon", cookieConfirmLabel: "cookieConfirmLabel", cookieConfirmText: "cookieConfirmText", cookieExpires: "cookieExpires", localization: "localization", previewIcon: "previewIcon", previewLabel: "previewLabel", skipPreview: "skipPreview", skipPreviewIfCookieAccepted: "skipPreviewIfCookieAccepted", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1440
|
+
};
|
|
1441
|
+
StzhIframe = __decorate([
|
|
1442
|
+
ProxyCmp({
|
|
1443
|
+
inputs: ['cookie', 'cookieConfirmIcon', 'cookieConfirmLabel', 'cookieConfirmText', 'cookieExpires', 'localization', 'previewIcon', 'previewLabel', 'skipPreview', 'skipPreviewIfCookieAccepted', 'src']
|
|
1444
|
+
})
|
|
1445
|
+
], StzhIframe);
|
|
1446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhIframe, decorators: [{
|
|
1447
|
+
type: Component,
|
|
1448
|
+
args: [{
|
|
1449
|
+
selector: 'stzh-iframe',
|
|
1450
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1451
|
+
template: '<ng-content></ng-content>',
|
|
1452
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1453
|
+
inputs: ['cookie', 'cookieConfirmIcon', 'cookieConfirmLabel', 'cookieConfirmText', 'cookieExpires', 'localization', 'previewIcon', 'previewLabel', 'skipPreview', 'skipPreviewIfCookieAccepted', 'src'],
|
|
1454
|
+
}]
|
|
1455
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1456
|
+
let StzhImagecomparison = class StzhImagecomparison {
|
|
1457
|
+
constructor(c, r, z) {
|
|
1458
|
+
this.z = z;
|
|
1459
|
+
c.detach();
|
|
1460
|
+
this.el = r.nativeElement;
|
|
1461
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
1462
|
+
}
|
|
1463
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhImagecomparison, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1464
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhImagecomparison, selector: "stzh-imagecomparison", inputs: { a11yDescribedby: "a11yDescribedby", hintLeft: "hintLeft", hintRight: "hintRight", label: "label", localization: "localization", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1465
|
+
};
|
|
1466
|
+
StzhImagecomparison = __decorate([
|
|
1467
|
+
ProxyCmp({
|
|
1468
|
+
inputs: ['a11yDescribedby', 'hintLeft', 'hintRight', 'label', 'localization', 'value']
|
|
1469
|
+
})
|
|
1470
|
+
], StzhImagecomparison);
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhImagecomparison, decorators: [{
|
|
1472
|
+
type: Component,
|
|
1473
|
+
args: [{
|
|
1474
|
+
selector: 'stzh-imagecomparison',
|
|
1475
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1476
|
+
template: '<ng-content></ng-content>',
|
|
1477
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1478
|
+
inputs: ['a11yDescribedby', 'hintLeft', 'hintRight', 'label', 'localization', 'value'],
|
|
1479
|
+
}]
|
|
1480
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1481
|
+
let StzhInput = class StzhInput {
|
|
1482
|
+
constructor(c, r, z) {
|
|
1483
|
+
this.z = z;
|
|
1484
|
+
c.detach();
|
|
1485
|
+
this.el = r.nativeElement;
|
|
1486
|
+
proxyOutputs(this, this.el, ['stzhChange', 'stzhChanged', 'stzhFocus', 'stzhBlur']);
|
|
1487
|
+
}
|
|
1488
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1489
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhInput, selector: "stzh-input", inputs: { a11yDescribedby: "a11yDescribedby", autocomplete: "autocomplete", clearable: "clearable", defaultValue: "defaultValue", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", disabled: "disabled", error: "error", hideOptional: "hideOptional", inputmode: "inputmode", invalid: "invalid", label: "label", labelHidden: "labelHidden", localization: "localization", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", multiline: "multiline", name: "name", noAutocomplete: "noAutocomplete", readonly: "readonly", required: "required", rows: "rows", showSpin: "showSpin", size: "size", step: "step", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1490
|
+
};
|
|
1491
|
+
StzhInput = __decorate([
|
|
1492
|
+
ProxyCmp({
|
|
1493
|
+
inputs: ['a11yDescribedby', 'autocomplete', 'clearable', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'inputmode', 'invalid', 'label', 'labelHidden', 'localization', 'max', 'maxlength', 'min', 'minlength', 'multiline', 'name', 'noAutocomplete', 'readonly', 'required', 'rows', 'showSpin', 'size', 'step', 'type', 'value']
|
|
1494
|
+
})
|
|
1495
|
+
], StzhInput);
|
|
1496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhInput, decorators: [{
|
|
1497
|
+
type: Component,
|
|
1498
|
+
args: [{
|
|
1499
|
+
selector: 'stzh-input',
|
|
1500
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1501
|
+
template: '<ng-content></ng-content>',
|
|
1502
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1503
|
+
inputs: ['a11yDescribedby', 'autocomplete', 'clearable', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'inputmode', 'invalid', 'label', 'labelHidden', 'localization', 'max', 'maxlength', 'min', 'minlength', 'multiline', 'name', 'noAutocomplete', 'readonly', 'required', 'rows', 'showSpin', 'size', 'step', 'type', 'value'],
|
|
1504
|
+
}]
|
|
1505
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1506
|
+
let StzhInvert = class StzhInvert {
|
|
1507
|
+
constructor(c, r, z) {
|
|
1508
|
+
this.z = z;
|
|
1509
|
+
c.detach();
|
|
1510
|
+
this.el = r.nativeElement;
|
|
1511
|
+
}
|
|
1512
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhInvert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1513
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhInvert, selector: "stzh-invert", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1514
|
+
};
|
|
1515
|
+
StzhInvert = __decorate([
|
|
1516
|
+
ProxyCmp({})
|
|
1517
|
+
], StzhInvert);
|
|
1518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhInvert, decorators: [{
|
|
1519
|
+
type: Component,
|
|
1520
|
+
args: [{
|
|
1521
|
+
selector: 'stzh-invert',
|
|
1522
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1523
|
+
template: '<ng-content></ng-content>',
|
|
1524
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1525
|
+
inputs: [],
|
|
1526
|
+
}]
|
|
1527
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1528
|
+
let StzhLink = class StzhLink {
|
|
1529
|
+
constructor(c, r, z) {
|
|
1530
|
+
this.z = z;
|
|
1531
|
+
c.detach();
|
|
1532
|
+
this.el = r.nativeElement;
|
|
1533
|
+
proxyOutputs(this, this.el, ['stzhFocus', 'stzhBlur']);
|
|
1534
|
+
}
|
|
1535
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhLink, 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: StzhLink, selector: "stzh-link", inputs: { a11yControls: "a11yControls", a11yCurrent: "a11yCurrent", a11yDescribedby: "a11yDescribedby", a11yDisabled: "a11yDisabled", a11yExpanded: "a11yExpanded", a11yLabel: "a11yLabel", a11yTabindex: "a11yTabindex", active: "active", analyticsId: "analyticsId", badge: "badge", badgeEmpty: "badgeEmpty", badgePosition: "badgePosition", badgeType: "badgeType", disabled: "disabled", download: "download", fullwidth: "fullwidth", height: "height", href: "href", icon: "icon", iconOnly: "iconOnly", iconPosition: "iconPosition", label: "label", linkAccesskey: "linkAccesskey", linkId: "linkId", localization: "localization", rel: "rel", size: "size", sizeLarge: "sizeLarge", sizeMedium: "sizeMedium", sizeSmall: "sizeSmall", sizeUltra: "sizeUltra", target: "target", textAlign: "textAlign", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1537
|
+
};
|
|
1538
|
+
StzhLink = __decorate([
|
|
1539
|
+
ProxyCmp({
|
|
1540
|
+
inputs: ['a11yControls', 'a11yCurrent', 'a11yDescribedby', 'a11yDisabled', 'a11yExpanded', 'a11yLabel', 'a11yTabindex', 'active', 'analyticsId', 'badge', 'badgeEmpty', 'badgePosition', 'badgeType', 'disabled', 'download', 'fullwidth', 'height', 'href', 'icon', 'iconOnly', 'iconPosition', 'label', 'linkAccesskey', 'linkId', 'localization', 'rel', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra', 'target', 'textAlign', 'type', 'variant']
|
|
1541
|
+
})
|
|
1542
|
+
], StzhLink);
|
|
1543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhLink, decorators: [{
|
|
1544
|
+
type: Component,
|
|
1545
|
+
args: [{
|
|
1546
|
+
selector: 'stzh-link',
|
|
1547
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1548
|
+
template: '<ng-content></ng-content>',
|
|
1549
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1550
|
+
inputs: ['a11yControls', 'a11yCurrent', 'a11yDescribedby', 'a11yDisabled', 'a11yExpanded', 'a11yLabel', 'a11yTabindex', 'active', 'analyticsId', 'badge', 'badgeEmpty', 'badgePosition', 'badgeType', 'disabled', 'download', 'fullwidth', 'height', 'href', 'icon', 'iconOnly', 'iconPosition', 'label', 'linkAccesskey', 'linkId', 'localization', 'rel', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra', 'target', 'textAlign', 'type', 'variant'],
|
|
1551
|
+
}]
|
|
1552
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1553
|
+
let StzhList = class StzhList {
|
|
1554
|
+
constructor(c, r, z) {
|
|
1555
|
+
this.z = z;
|
|
1556
|
+
c.detach();
|
|
1557
|
+
this.el = r.nativeElement;
|
|
1558
|
+
}
|
|
1559
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1560
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhList, selector: "stzh-list", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1561
|
+
};
|
|
1562
|
+
StzhList = __decorate([
|
|
1563
|
+
ProxyCmp({
|
|
1564
|
+
inputs: ['variant']
|
|
1565
|
+
})
|
|
1566
|
+
], StzhList);
|
|
1567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhList, decorators: [{
|
|
1568
|
+
type: Component,
|
|
1569
|
+
args: [{
|
|
1570
|
+
selector: 'stzh-list',
|
|
1571
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1572
|
+
template: '<ng-content></ng-content>',
|
|
1573
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1574
|
+
inputs: ['variant'],
|
|
1575
|
+
}]
|
|
1576
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1577
|
+
let StzhListItem = class StzhListItem {
|
|
1578
|
+
constructor(c, r, z) {
|
|
1579
|
+
this.z = z;
|
|
1580
|
+
c.detach();
|
|
1581
|
+
this.el = r.nativeElement;
|
|
1582
|
+
}
|
|
1583
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhListItem, 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: StzhListItem, selector: "stzh-list-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1585
|
+
};
|
|
1586
|
+
StzhListItem = __decorate([
|
|
1587
|
+
ProxyCmp({})
|
|
1588
|
+
], StzhListItem);
|
|
1589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhListItem, decorators: [{
|
|
1590
|
+
type: Component,
|
|
1591
|
+
args: [{
|
|
1592
|
+
selector: 'stzh-list-item',
|
|
1593
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1594
|
+
template: '<ng-content></ng-content>',
|
|
1595
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1596
|
+
inputs: [],
|
|
1597
|
+
}]
|
|
1598
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1599
|
+
let StzhLoader = class StzhLoader {
|
|
1600
|
+
constructor(c, r, z) {
|
|
1601
|
+
this.z = z;
|
|
1602
|
+
c.detach();
|
|
1603
|
+
this.el = r.nativeElement;
|
|
1604
|
+
}
|
|
1605
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1606
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhLoader, selector: "stzh-loader", inputs: { hideLabel: "hideLabel", label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1607
|
+
};
|
|
1608
|
+
StzhLoader = __decorate([
|
|
1609
|
+
ProxyCmp({
|
|
1610
|
+
inputs: ['hideLabel', 'label', 'size']
|
|
1611
|
+
})
|
|
1612
|
+
], StzhLoader);
|
|
1613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhLoader, decorators: [{
|
|
1614
|
+
type: Component,
|
|
1615
|
+
args: [{
|
|
1616
|
+
selector: 'stzh-loader',
|
|
1617
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1618
|
+
template: '<ng-content></ng-content>',
|
|
1619
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1620
|
+
inputs: ['hideLabel', 'label', 'size'],
|
|
1621
|
+
}]
|
|
1622
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1623
|
+
let StzhLoadingbar = class StzhLoadingbar {
|
|
1624
|
+
constructor(c, r, z) {
|
|
1625
|
+
this.z = z;
|
|
1626
|
+
c.detach();
|
|
1627
|
+
this.el = r.nativeElement;
|
|
1628
|
+
}
|
|
1629
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhLoadingbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1630
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhLoadingbar, selector: "stzh-loadingbar", inputs: { hidePercent: "hidePercent", label: "label", percent: "percent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1631
|
+
};
|
|
1632
|
+
StzhLoadingbar = __decorate([
|
|
1633
|
+
ProxyCmp({
|
|
1634
|
+
inputs: ['hidePercent', 'label', 'percent']
|
|
1635
|
+
})
|
|
1636
|
+
], StzhLoadingbar);
|
|
1637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhLoadingbar, decorators: [{
|
|
1638
|
+
type: Component,
|
|
1639
|
+
args: [{
|
|
1640
|
+
selector: 'stzh-loadingbar',
|
|
1641
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1642
|
+
template: '<ng-content></ng-content>',
|
|
1643
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1644
|
+
inputs: ['hidePercent', 'label', 'percent'],
|
|
1645
|
+
}]
|
|
1646
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1647
|
+
let StzhMenu = class StzhMenu {
|
|
1648
|
+
constructor(c, r, z) {
|
|
1649
|
+
this.z = z;
|
|
1650
|
+
c.detach();
|
|
1651
|
+
this.el = r.nativeElement;
|
|
1652
|
+
}
|
|
1653
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1654
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhMenu, selector: "stzh-menu", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1655
|
+
};
|
|
1656
|
+
StzhMenu = __decorate([
|
|
1657
|
+
ProxyCmp({})
|
|
1658
|
+
], StzhMenu);
|
|
1659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMenu, decorators: [{
|
|
1660
|
+
type: Component,
|
|
1661
|
+
args: [{
|
|
1662
|
+
selector: 'stzh-menu',
|
|
1663
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1664
|
+
template: '<ng-content></ng-content>',
|
|
1665
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1666
|
+
inputs: [],
|
|
1667
|
+
}]
|
|
1668
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1669
|
+
let StzhMenuItem = class StzhMenuItem {
|
|
1670
|
+
constructor(c, r, z) {
|
|
1671
|
+
this.z = z;
|
|
1672
|
+
c.detach();
|
|
1673
|
+
this.el = r.nativeElement;
|
|
1674
|
+
proxyOutputs(this, this.el, ['stzhFocus', 'stzhBlur']);
|
|
1675
|
+
}
|
|
1676
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1677
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhMenuItem, selector: "stzh-menu-item", inputs: { a11yLabel: "a11yLabel", active: "active", analyticsId: "analyticsId", badge: "badge", badgeEmpty: "badgeEmpty", badgeType: "badgeType", counter: "counter", disabled: "disabled", href: "href", icon: "icon", label: "label", size: "size", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1678
|
+
};
|
|
1679
|
+
StzhMenuItem = __decorate([
|
|
1680
|
+
ProxyCmp({
|
|
1681
|
+
inputs: ['a11yLabel', 'active', 'analyticsId', 'badge', 'badgeEmpty', 'badgeType', 'counter', 'disabled', 'href', 'icon', 'label', 'size', 'target', 'variant']
|
|
1682
|
+
})
|
|
1683
|
+
], StzhMenuItem);
|
|
1684
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMenuItem, decorators: [{
|
|
1685
|
+
type: Component,
|
|
1686
|
+
args: [{
|
|
1687
|
+
selector: 'stzh-menu-item',
|
|
1688
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1689
|
+
template: '<ng-content></ng-content>',
|
|
1690
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1691
|
+
inputs: ['a11yLabel', 'active', 'analyticsId', 'badge', 'badgeEmpty', 'badgeType', 'counter', 'disabled', 'href', 'icon', 'label', 'size', 'target', 'variant'],
|
|
1692
|
+
}]
|
|
1693
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1694
|
+
let StzhMessage = class StzhMessage {
|
|
1695
|
+
constructor(c, r, z) {
|
|
1696
|
+
this.z = z;
|
|
1697
|
+
c.detach();
|
|
1698
|
+
this.el = r.nativeElement;
|
|
1699
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhClose']);
|
|
1700
|
+
}
|
|
1701
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1702
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhMessage, selector: "stzh-message", inputs: { description: "description", hideClose: "hideClose", label: "label", localization: "localization", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1703
|
+
};
|
|
1704
|
+
StzhMessage = __decorate([
|
|
1705
|
+
ProxyCmp({
|
|
1706
|
+
inputs: ['description', 'hideClose', 'label', 'localization', 'type'],
|
|
1707
|
+
methods: ['show', 'hide']
|
|
1708
|
+
})
|
|
1709
|
+
], StzhMessage);
|
|
1710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMessage, decorators: [{
|
|
1711
|
+
type: Component,
|
|
1712
|
+
args: [{
|
|
1713
|
+
selector: 'stzh-message',
|
|
1714
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1715
|
+
template: '<ng-content></ng-content>',
|
|
1716
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1717
|
+
inputs: ['description', 'hideClose', 'label', 'localization', 'type'],
|
|
1718
|
+
}]
|
|
1719
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1720
|
+
let StzhMicrositeTeaserlist = class StzhMicrositeTeaserlist {
|
|
1721
|
+
constructor(c, r, z) {
|
|
1722
|
+
this.z = z;
|
|
1723
|
+
c.detach();
|
|
1724
|
+
this.el = r.nativeElement;
|
|
1725
|
+
}
|
|
1726
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMicrositeTeaserlist, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1727
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhMicrositeTeaserlist, selector: "stzh-microsite-teaserlist", inputs: { api: "api", localization: "localization", showItems: "showItems", stepItems: "stepItems", tags: "tags" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1728
|
+
};
|
|
1729
|
+
StzhMicrositeTeaserlist = __decorate([
|
|
1730
|
+
ProxyCmp({
|
|
1731
|
+
inputs: ['api', 'localization', 'showItems', 'stepItems', 'tags']
|
|
1732
|
+
})
|
|
1733
|
+
], StzhMicrositeTeaserlist);
|
|
1734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMicrositeTeaserlist, decorators: [{
|
|
1735
|
+
type: Component,
|
|
1736
|
+
args: [{
|
|
1737
|
+
selector: 'stzh-microsite-teaserlist',
|
|
1738
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1739
|
+
template: '<ng-content></ng-content>',
|
|
1740
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1741
|
+
inputs: ['api', 'localization', 'showItems', 'stepItems', 'tags'],
|
|
1742
|
+
}]
|
|
1743
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1744
|
+
let StzhMonthyearpicker = class StzhMonthyearpicker {
|
|
1745
|
+
constructor(c, r, z) {
|
|
1746
|
+
this.z = z;
|
|
1747
|
+
c.detach();
|
|
1748
|
+
this.el = r.nativeElement;
|
|
1749
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
1750
|
+
}
|
|
1751
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMonthyearpicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1752
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhMonthyearpicker, selector: "stzh-monthyearpicker", inputs: { a11yDescribedbyMonth: "a11yDescribedbyMonth", a11yDescribedbyYear: "a11yDescribedbyYear", descriptionLongMonth: "descriptionLongMonth", descriptionLongYear: "descriptionLongYear", descriptionMonth: "descriptionMonth", descriptionYear: "descriptionYear", disabled: "disabled", errorMonth: "errorMonth", errorYear: "errorYear", format: "format", hideOptional: "hideOptional", invalidMonth: "invalidMonth", invalidYear: "invalidYear", localization: "localization", max: "max", maxYear: "maxYear", min: "min", minYear: "minYear", monthLabel: "monthLabel", monthOpen: "monthOpen", months: "months", name: "name", popoverPlacement: "popoverPlacement", readonly: "readonly", required: "required", size: "size", value: "value", yearLabel: "yearLabel", yearOpen: "yearOpen", years: "years" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1753
|
+
};
|
|
1754
|
+
StzhMonthyearpicker = __decorate([
|
|
1755
|
+
ProxyCmp({
|
|
1756
|
+
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', 'years']
|
|
1757
|
+
})
|
|
1758
|
+
], StzhMonthyearpicker);
|
|
1759
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhMonthyearpicker, decorators: [{
|
|
1760
|
+
type: Component,
|
|
1761
|
+
args: [{
|
|
1762
|
+
selector: 'stzh-monthyearpicker',
|
|
1763
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1764
|
+
template: '<ng-content></ng-content>',
|
|
1765
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1766
|
+
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', 'years'],
|
|
1767
|
+
}]
|
|
1768
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1769
|
+
let StzhOlmap = class StzhOlmap {
|
|
1770
|
+
constructor(c, r, z) {
|
|
1771
|
+
this.z = z;
|
|
1772
|
+
c.detach();
|
|
1773
|
+
this.el = r.nativeElement;
|
|
1774
|
+
proxyOutputs(this, this.el, ['stzhInitialized', 'stzhPostRender', 'stzhMoveStart', 'stzhMoveEnd']);
|
|
1775
|
+
}
|
|
1776
|
+
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 }); }
|
|
1777
|
+
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 }); }
|
|
1778
|
+
};
|
|
1779
|
+
StzhOlmap = __decorate([
|
|
1780
|
+
ProxyCmp({
|
|
1781
|
+
inputs: ['center', 'centerMarker', 'hostname', 'layer', 'layerControl', 'layers', 'localization', 'locationControl', 'pinchRotateThreshold', 'printControl', 'resolutions', 'scaleControl', 'zoom', 'zoomLocation'],
|
|
1782
|
+
methods: ['getMap', 'addIconMarker', 'removeIconMarker', 'setIconMarkerActive', 'setIconMarkerInactive', 'enableLocationTracking', 'disableLocationTracking', 'getDistance']
|
|
1783
|
+
})
|
|
1784
|
+
], StzhOlmap);
|
|
1785
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOlmap, decorators: [{
|
|
1786
|
+
type: Component,
|
|
1787
|
+
args: [{
|
|
1788
|
+
selector: 'stzh-olmap',
|
|
1789
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1790
|
+
template: '<ng-content></ng-content>',
|
|
1791
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1792
|
+
inputs: ['center', 'centerMarker', 'hostname', 'layer', 'layerControl', 'layers', 'localization', 'locationControl', 'pinchRotateThreshold', 'printControl', 'resolutions', 'scaleControl', 'zoom', 'zoomLocation'],
|
|
1793
|
+
}]
|
|
1794
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1795
|
+
let StzhOverlay = class StzhOverlay {
|
|
1796
|
+
constructor(c, r, z) {
|
|
1797
|
+
this.z = z;
|
|
1798
|
+
c.detach();
|
|
1799
|
+
this.el = r.nativeElement;
|
|
1800
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhClose']);
|
|
1801
|
+
}
|
|
1802
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1803
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhOverlay, selector: "stzh-overlay", inputs: { a11yLabel: "a11yLabel", open: "open", stay: "stay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1804
|
+
};
|
|
1805
|
+
StzhOverlay = __decorate([
|
|
1806
|
+
ProxyCmp({
|
|
1807
|
+
inputs: ['a11yLabel', 'open', 'stay'],
|
|
1808
|
+
methods: ['show', 'hide']
|
|
1809
|
+
})
|
|
1810
|
+
], StzhOverlay);
|
|
1811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhOverlay, decorators: [{
|
|
1812
|
+
type: Component,
|
|
1813
|
+
args: [{
|
|
1814
|
+
selector: 'stzh-overlay',
|
|
1815
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1816
|
+
template: '<ng-content></ng-content>',
|
|
1817
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1818
|
+
inputs: ['a11yLabel', 'open', 'stay'],
|
|
1819
|
+
}]
|
|
1820
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1821
|
+
let StzhPageSkiplinks = class StzhPageSkiplinks {
|
|
1822
|
+
constructor(c, r, z) {
|
|
1823
|
+
this.z = z;
|
|
1824
|
+
c.detach();
|
|
1825
|
+
this.el = r.nativeElement;
|
|
1826
|
+
}
|
|
1827
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPageSkiplinks, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1828
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPageSkiplinks, selector: "stzh-page-skiplinks", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1829
|
+
};
|
|
1830
|
+
StzhPageSkiplinks = __decorate([
|
|
1831
|
+
ProxyCmp({})
|
|
1832
|
+
], StzhPageSkiplinks);
|
|
1833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPageSkiplinks, decorators: [{
|
|
1834
|
+
type: Component,
|
|
1835
|
+
args: [{
|
|
1836
|
+
selector: 'stzh-page-skiplinks',
|
|
1837
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1838
|
+
template: '<ng-content></ng-content>',
|
|
1839
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1840
|
+
inputs: [],
|
|
1841
|
+
}]
|
|
1842
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1843
|
+
let StzhPagebottom = class StzhPagebottom {
|
|
1844
|
+
constructor(c, r, z) {
|
|
1845
|
+
this.z = z;
|
|
1846
|
+
c.detach();
|
|
1847
|
+
this.el = r.nativeElement;
|
|
1848
|
+
}
|
|
1849
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagebottom, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1850
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPagebottom, selector: "stzh-pagebottom", inputs: { logoAnalyticsId: "logoAnalyticsId", logoHref: "logoHref", shareDisabled: "shareDisabled", shareMailBody: "shareMailBody", shareMailSubject: "shareMailSubject", shareServices: "shareServices", shareTitle: "shareTitle", shareUrl: "shareUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1851
|
+
};
|
|
1852
|
+
StzhPagebottom = __decorate([
|
|
1853
|
+
ProxyCmp({
|
|
1854
|
+
inputs: ['logoAnalyticsId', 'logoHref', 'shareDisabled', 'shareMailBody', 'shareMailSubject', 'shareServices', 'shareTitle', 'shareUrl']
|
|
1855
|
+
})
|
|
1856
|
+
], StzhPagebottom);
|
|
1857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagebottom, decorators: [{
|
|
1858
|
+
type: Component,
|
|
1859
|
+
args: [{
|
|
1860
|
+
selector: 'stzh-pagebottom',
|
|
1861
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1862
|
+
template: '<ng-content></ng-content>',
|
|
1863
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1864
|
+
inputs: ['logoAnalyticsId', 'logoHref', 'shareDisabled', 'shareMailBody', 'shareMailSubject', 'shareServices', 'shareTitle', 'shareUrl'],
|
|
1865
|
+
}]
|
|
1866
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1867
|
+
let StzhPagecontent = class StzhPagecontent {
|
|
1868
|
+
constructor(c, r, z) {
|
|
1869
|
+
this.z = z;
|
|
1870
|
+
c.detach();
|
|
1871
|
+
this.el = r.nativeElement;
|
|
1872
|
+
}
|
|
1873
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagecontent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1874
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPagecontent, selector: "stzh-pagecontent", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1875
|
+
};
|
|
1876
|
+
StzhPagecontent = __decorate([
|
|
1877
|
+
ProxyCmp({})
|
|
1878
|
+
], StzhPagecontent);
|
|
1879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagecontent, decorators: [{
|
|
1880
|
+
type: Component,
|
|
1881
|
+
args: [{
|
|
1882
|
+
selector: 'stzh-pagecontent',
|
|
1883
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1884
|
+
template: '<ng-content></ng-content>',
|
|
1885
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1886
|
+
inputs: [],
|
|
1887
|
+
}]
|
|
1888
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1889
|
+
let StzhPagetitle = class StzhPagetitle {
|
|
1890
|
+
constructor(c, r, z) {
|
|
1891
|
+
this.z = z;
|
|
1892
|
+
c.detach();
|
|
1893
|
+
this.el = r.nativeElement;
|
|
1894
|
+
}
|
|
1895
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagetitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPagetitle, selector: "stzh-pagetitle", inputs: { background: "background" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1897
|
+
};
|
|
1898
|
+
StzhPagetitle = __decorate([
|
|
1899
|
+
ProxyCmp({
|
|
1900
|
+
inputs: ['background']
|
|
1901
|
+
})
|
|
1902
|
+
], StzhPagetitle);
|
|
1903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagetitle, decorators: [{
|
|
1904
|
+
type: Component,
|
|
1905
|
+
args: [{
|
|
1906
|
+
selector: 'stzh-pagetitle',
|
|
1907
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1908
|
+
template: '<ng-content></ng-content>',
|
|
1909
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1910
|
+
inputs: ['background'],
|
|
1911
|
+
}]
|
|
1912
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1913
|
+
let StzhPagetitleHero = class StzhPagetitleHero {
|
|
1914
|
+
constructor(c, r, z) {
|
|
1915
|
+
this.z = z;
|
|
1916
|
+
c.detach();
|
|
1917
|
+
this.el = r.nativeElement;
|
|
1918
|
+
}
|
|
1919
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagetitleHero, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1920
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPagetitleHero, selector: "stzh-pagetitle-hero", inputs: { heading: "heading", headingId: "headingId", leadAuthor: "leadAuthor", subtitle: "subtitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1921
|
+
};
|
|
1922
|
+
StzhPagetitleHero = __decorate([
|
|
1923
|
+
ProxyCmp({
|
|
1924
|
+
inputs: ['heading', 'headingId', 'leadAuthor', 'subtitle']
|
|
1925
|
+
})
|
|
1926
|
+
], StzhPagetitleHero);
|
|
1927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagetitleHero, decorators: [{
|
|
1928
|
+
type: Component,
|
|
1929
|
+
args: [{
|
|
1930
|
+
selector: 'stzh-pagetitle-hero',
|
|
1931
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1932
|
+
template: '<ng-content></ng-content>',
|
|
1933
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1934
|
+
inputs: ['heading', 'headingId', 'leadAuthor', 'subtitle'],
|
|
1935
|
+
}]
|
|
1936
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1937
|
+
let StzhPagination = class StzhPagination {
|
|
1938
|
+
constructor(c, r, z) {
|
|
1939
|
+
this.z = z;
|
|
1940
|
+
c.detach();
|
|
1941
|
+
this.el = r.nativeElement;
|
|
1942
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
1943
|
+
}
|
|
1944
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1945
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPagination, selector: "stzh-pagination", inputs: { a11yDescribedby: "a11yDescribedby", description: "description", descriptionLong: "descriptionLong", disabled: "disabled", error: "error", invalid: "invalid", label: "label", labelHidden: "labelHidden", localization: "localization", name: "name", readonly: "readonly", required: "required", size: "size", total: "total", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1946
|
+
};
|
|
1947
|
+
StzhPagination = __decorate([
|
|
1948
|
+
ProxyCmp({
|
|
1949
|
+
inputs: ['a11yDescribedby', 'description', 'descriptionLong', 'disabled', 'error', 'invalid', 'label', 'labelHidden', 'localization', 'name', 'readonly', 'required', 'size', 'total', 'value'],
|
|
1950
|
+
methods: ['prev', 'next']
|
|
1951
|
+
})
|
|
1952
|
+
], StzhPagination);
|
|
1953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPagination, decorators: [{
|
|
1954
|
+
type: Component,
|
|
1955
|
+
args: [{
|
|
1956
|
+
selector: 'stzh-pagination',
|
|
1957
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1958
|
+
template: '<ng-content></ng-content>',
|
|
1959
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1960
|
+
inputs: ['a11yDescribedby', 'description', 'descriptionLong', 'disabled', 'error', 'invalid', 'label', 'labelHidden', 'localization', 'name', 'readonly', 'required', 'size', 'total', 'value'],
|
|
1961
|
+
}]
|
|
1962
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1963
|
+
let StzhPanorama = class StzhPanorama {
|
|
1964
|
+
constructor(c, r, z) {
|
|
1965
|
+
this.z = z;
|
|
1966
|
+
c.detach();
|
|
1967
|
+
this.el = r.nativeElement;
|
|
1968
|
+
proxyOutputs(this, this.el, ['stzhLoad', 'stzhChange', 'stzhFullscreenChange', 'stzhSceneChange', 'stzhZoomChange']);
|
|
1969
|
+
}
|
|
1970
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPanorama, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1971
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPanorama, selector: "stzh-panorama", inputs: { autoload: "autoload", caption: "caption", copyright: "copyright", localization: "localization", orientationOnByDefault: "orientationOnByDefault", scene: "scene", sceneFadeDuration: "sceneFadeDuration", scenes: "scenes" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1972
|
+
};
|
|
1973
|
+
StzhPanorama = __decorate([
|
|
1974
|
+
ProxyCmp({
|
|
1975
|
+
inputs: ['autoload', 'caption', 'copyright', 'localization', 'orientationOnByDefault', 'scene', 'sceneFadeDuration', 'scenes'],
|
|
1976
|
+
methods: ['getViewer']
|
|
1977
|
+
})
|
|
1978
|
+
], StzhPanorama);
|
|
1979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPanorama, decorators: [{
|
|
1980
|
+
type: Component,
|
|
1981
|
+
args: [{
|
|
1982
|
+
selector: 'stzh-panorama',
|
|
1983
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1984
|
+
template: '<ng-content></ng-content>',
|
|
1985
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1986
|
+
inputs: ['autoload', 'caption', 'copyright', 'localization', 'orientationOnByDefault', 'scene', 'sceneFadeDuration', 'scenes'],
|
|
1987
|
+
}]
|
|
1988
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1989
|
+
let StzhPopover = class StzhPopover {
|
|
1990
|
+
constructor(c, r, z) {
|
|
1991
|
+
this.z = z;
|
|
1992
|
+
c.detach();
|
|
1993
|
+
this.el = r.nativeElement;
|
|
1994
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhOpened', 'stzhClose', 'stzhClosed']);
|
|
1995
|
+
}
|
|
1996
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1997
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPopover, selector: "stzh-popover", inputs: { distance: "distance", fullwidth: "fullwidth", label: "label", localization: "localization", open: "open", placement: "placement", size: "size", skidding: "skidding", strategy: "strategy", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1998
|
+
};
|
|
1999
|
+
StzhPopover = __decorate([
|
|
2000
|
+
ProxyCmp({
|
|
2001
|
+
inputs: ['distance', 'fullwidth', 'label', 'localization', 'open', 'placement', 'size', 'skidding', 'strategy', 'variant'],
|
|
2002
|
+
methods: ['show', 'hide', 'toggle', 'update']
|
|
2003
|
+
})
|
|
2004
|
+
], StzhPopover);
|
|
2005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPopover, decorators: [{
|
|
2006
|
+
type: Component,
|
|
2007
|
+
args: [{
|
|
2008
|
+
selector: 'stzh-popover',
|
|
2009
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2010
|
+
template: '<ng-content></ng-content>',
|
|
2011
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2012
|
+
inputs: ['distance', 'fullwidth', 'label', 'localization', 'open', 'placement', 'size', 'skidding', 'strategy', 'variant'],
|
|
2013
|
+
}]
|
|
2014
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2015
|
+
let StzhPrint = class StzhPrint {
|
|
2016
|
+
constructor(c, r, z) {
|
|
2017
|
+
this.z = z;
|
|
2018
|
+
c.detach();
|
|
2019
|
+
this.el = r.nativeElement;
|
|
2020
|
+
}
|
|
2021
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPrint, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2022
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhPrint, selector: "stzh-print", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2023
|
+
};
|
|
2024
|
+
StzhPrint = __decorate([
|
|
2025
|
+
ProxyCmp({})
|
|
2026
|
+
], StzhPrint);
|
|
2027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhPrint, decorators: [{
|
|
2028
|
+
type: Component,
|
|
2029
|
+
args: [{
|
|
2030
|
+
selector: 'stzh-print',
|
|
2031
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2032
|
+
template: '<ng-content></ng-content>',
|
|
2033
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2034
|
+
inputs: [],
|
|
2035
|
+
}]
|
|
2036
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2037
|
+
let StzhProgressbar = class StzhProgressbar {
|
|
2038
|
+
constructor(c, r, z) {
|
|
2039
|
+
this.z = z;
|
|
2040
|
+
c.detach();
|
|
2041
|
+
this.el = r.nativeElement;
|
|
2042
|
+
}
|
|
2043
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhProgressbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2044
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhProgressbar, selector: "stzh-progressbar", inputs: { data: "data", index: "index", localization: "localization", steps: "steps", stepsLarge: "stepsLarge", stepsMedium: "stepsMedium", stepsSmall: "stepsSmall", stepsUltra: "stepsUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2045
|
+
};
|
|
2046
|
+
StzhProgressbar = __decorate([
|
|
2047
|
+
ProxyCmp({
|
|
2048
|
+
inputs: ['data', 'index', 'localization', 'steps', 'stepsLarge', 'stepsMedium', 'stepsSmall', 'stepsUltra'],
|
|
2049
|
+
methods: ['getItemData']
|
|
2050
|
+
})
|
|
2051
|
+
], StzhProgressbar);
|
|
2052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhProgressbar, decorators: [{
|
|
2053
|
+
type: Component,
|
|
2054
|
+
args: [{
|
|
2055
|
+
selector: 'stzh-progressbar',
|
|
2056
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2057
|
+
template: '<ng-content></ng-content>',
|
|
2058
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2059
|
+
inputs: ['data', 'index', 'localization', 'steps', 'stepsLarge', 'stepsMedium', 'stepsSmall', 'stepsUltra'],
|
|
2060
|
+
}]
|
|
2061
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2062
|
+
let StzhProgressbarItem = class StzhProgressbarItem {
|
|
2063
|
+
constructor(c, r, z) {
|
|
2064
|
+
this.z = z;
|
|
2065
|
+
c.detach();
|
|
2066
|
+
this.el = r.nativeElement;
|
|
2067
|
+
proxyOutputs(this, this.el, ['stzhClick', 'stzhDottedClick']);
|
|
2068
|
+
}
|
|
2069
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhProgressbarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2070
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhProgressbarItem, selector: "stzh-progressbar-item", inputs: { analyticsId: "analyticsId", current: "current", disabled: "disabled", dotted: "dotted", first: "first", hide: "hide", icon: "icon", label: "label", last: "last", passed: "passed", step: "step" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2071
|
+
};
|
|
2072
|
+
StzhProgressbarItem = __decorate([
|
|
2073
|
+
ProxyCmp({
|
|
2074
|
+
inputs: ['analyticsId', 'current', 'disabled', 'dotted', 'first', 'hide', 'icon', 'label', 'last', 'passed', 'step']
|
|
2075
|
+
})
|
|
2076
|
+
], StzhProgressbarItem);
|
|
2077
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhProgressbarItem, decorators: [{
|
|
2078
|
+
type: Component,
|
|
2079
|
+
args: [{
|
|
2080
|
+
selector: 'stzh-progressbar-item',
|
|
2081
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2082
|
+
template: '<ng-content></ng-content>',
|
|
2083
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2084
|
+
inputs: ['analyticsId', 'current', 'disabled', 'dotted', 'first', 'hide', 'icon', 'label', 'last', 'passed', 'step'],
|
|
2085
|
+
}]
|
|
2086
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2087
|
+
let StzhRadio = class StzhRadio {
|
|
2088
|
+
constructor(c, r, z) {
|
|
2089
|
+
this.z = z;
|
|
2090
|
+
c.detach();
|
|
2091
|
+
this.el = r.nativeElement;
|
|
2092
|
+
proxyOutputs(this, this.el, ['stzhChange', 'stzhFocus', 'stzhBlur']);
|
|
2093
|
+
}
|
|
2094
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2095
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhRadio, selector: "stzh-radio", inputs: { a11yDescribedby: "a11yDescribedby", checked: "checked", defaultChecked: "defaultChecked", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", disabled: "disabled", error: "error", hideOptional: "hideOptional", invalid: "invalid", label: "label", localization: "localization", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2096
|
+
};
|
|
2097
|
+
StzhRadio = __decorate([
|
|
2098
|
+
ProxyCmp({
|
|
2099
|
+
inputs: ['a11yDescribedby', 'checked', 'defaultChecked', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'name', 'required', 'value']
|
|
2100
|
+
})
|
|
2101
|
+
], StzhRadio);
|
|
2102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRadio, decorators: [{
|
|
2103
|
+
type: Component,
|
|
2104
|
+
args: [{
|
|
2105
|
+
selector: 'stzh-radio',
|
|
2106
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2107
|
+
template: '<ng-content></ng-content>',
|
|
2108
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2109
|
+
inputs: ['a11yDescribedby', 'checked', 'defaultChecked', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'name', 'required', 'value'],
|
|
2110
|
+
}]
|
|
2111
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2112
|
+
let StzhRadiogroup = class StzhRadiogroup {
|
|
2113
|
+
constructor(c, r, z) {
|
|
2114
|
+
this.z = z;
|
|
2115
|
+
c.detach();
|
|
2116
|
+
this.el = r.nativeElement;
|
|
2117
|
+
}
|
|
2118
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRadiogroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2119
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhRadiogroup, selector: "stzh-radiogroup", inputs: { checkedRadio: "checkedRadio", defaultValue: "defaultValue", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", direction: "direction", disabled: "disabled", error: "error", hideLegend: "hideLegend", hideOptional: "hideOptional", invalid: "invalid", legend: "legend", localization: "localization", name: "name", preventUpdateProperties: "preventUpdateProperties", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2120
|
+
};
|
|
2121
|
+
StzhRadiogroup = __decorate([
|
|
2122
|
+
ProxyCmp({
|
|
2123
|
+
inputs: ['checkedRadio', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'direction', 'disabled', 'error', 'hideLegend', 'hideOptional', 'invalid', 'legend', 'localization', 'name', 'preventUpdateProperties', 'required', 'value']
|
|
2124
|
+
})
|
|
2125
|
+
], StzhRadiogroup);
|
|
2126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRadiogroup, decorators: [{
|
|
2127
|
+
type: Component,
|
|
2128
|
+
args: [{
|
|
2129
|
+
selector: 'stzh-radiogroup',
|
|
2130
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2131
|
+
template: '<ng-content></ng-content>',
|
|
2132
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2133
|
+
inputs: ['checkedRadio', 'defaultValue', 'description', 'descriptionLong', 'descriptionLongTitle', 'direction', 'disabled', 'error', 'hideLegend', 'hideOptional', 'invalid', 'legend', 'localization', 'name', 'preventUpdateProperties', 'required', 'value'],
|
|
2134
|
+
}]
|
|
2135
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2136
|
+
let StzhRatio = class StzhRatio {
|
|
2137
|
+
constructor(c, r, z) {
|
|
2138
|
+
this.z = z;
|
|
2139
|
+
c.detach();
|
|
2140
|
+
this.el = r.nativeElement;
|
|
2141
|
+
}
|
|
2142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRatio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2143
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhRatio, selector: "stzh-ratio", inputs: { fit: "fit", portrait: "portrait", ratio: "ratio", ratioLarge: "ratioLarge", ratioMedium: "ratioMedium", ratioSmall: "ratioSmall", ratioUltra: "ratioUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2144
|
+
};
|
|
2145
|
+
StzhRatio = __decorate([
|
|
2146
|
+
ProxyCmp({
|
|
2147
|
+
inputs: ['fit', 'portrait', 'ratio', 'ratioLarge', 'ratioMedium', 'ratioSmall', 'ratioUltra']
|
|
2148
|
+
})
|
|
2149
|
+
], StzhRatio);
|
|
2150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRatio, decorators: [{
|
|
2151
|
+
type: Component,
|
|
2152
|
+
args: [{
|
|
2153
|
+
selector: 'stzh-ratio',
|
|
2154
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2155
|
+
template: '<ng-content></ng-content>',
|
|
2156
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2157
|
+
inputs: ['fit', 'portrait', 'ratio', 'ratioLarge', 'ratioMedium', 'ratioSmall', 'ratioUltra'],
|
|
2158
|
+
}]
|
|
2159
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2160
|
+
let StzhReadspeaker = class StzhReadspeaker {
|
|
2161
|
+
constructor(c, r, z) {
|
|
2162
|
+
this.z = z;
|
|
2163
|
+
c.detach();
|
|
2164
|
+
this.el = r.nativeElement;
|
|
2165
|
+
}
|
|
2166
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhReadspeaker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2167
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhReadspeaker, selector: "stzh-readspeaker", inputs: { eventId: "eventId", href: "href" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2168
|
+
};
|
|
2169
|
+
StzhReadspeaker = __decorate([
|
|
2170
|
+
ProxyCmp({
|
|
2171
|
+
inputs: ['eventId', 'href']
|
|
2172
|
+
})
|
|
2173
|
+
], StzhReadspeaker);
|
|
2174
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhReadspeaker, decorators: [{
|
|
2175
|
+
type: Component,
|
|
2176
|
+
args: [{
|
|
2177
|
+
selector: 'stzh-readspeaker',
|
|
2178
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2179
|
+
template: '<ng-content></ng-content>',
|
|
2180
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2181
|
+
inputs: ['eventId', 'href'],
|
|
2182
|
+
}]
|
|
2183
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2184
|
+
let StzhRichtext = class StzhRichtext {
|
|
2185
|
+
constructor(c, r, z) {
|
|
2186
|
+
this.z = z;
|
|
2187
|
+
c.detach();
|
|
2188
|
+
this.el = r.nativeElement;
|
|
2189
|
+
}
|
|
2190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRichtext, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2191
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhRichtext, selector: "stzh-richtext", inputs: { externalLinkIcon: "externalLinkIcon", externalLinkSelector: "externalLinkSelector", localization: "localization", removeFirstMargin: "removeFirstMargin", removeLastMargin: "removeLastMargin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2192
|
+
};
|
|
2193
|
+
StzhRichtext = __decorate([
|
|
2194
|
+
ProxyCmp({
|
|
2195
|
+
inputs: ['externalLinkIcon', 'externalLinkSelector', 'localization', 'removeFirstMargin', 'removeLastMargin']
|
|
2196
|
+
})
|
|
2197
|
+
], StzhRichtext);
|
|
2198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRichtext, decorators: [{
|
|
2199
|
+
type: Component,
|
|
2200
|
+
args: [{
|
|
2201
|
+
selector: 'stzh-richtext',
|
|
2202
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2203
|
+
template: '<ng-content></ng-content>',
|
|
2204
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2205
|
+
inputs: ['externalLinkIcon', 'externalLinkSelector', 'localization', 'removeFirstMargin', 'removeLastMargin'],
|
|
2206
|
+
}]
|
|
2207
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2208
|
+
let StzhRow = class StzhRow {
|
|
2209
|
+
constructor(c, r, z) {
|
|
2210
|
+
this.z = z;
|
|
2211
|
+
c.detach();
|
|
2212
|
+
this.el = r.nativeElement;
|
|
2213
|
+
}
|
|
2214
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2215
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhRow, selector: "stzh-row", inputs: { content: "content", items: "items", justify: "justify", span: "span", spanLarge: "spanLarge", spanMedium: "spanMedium", spanSmall: "spanSmall", spanUltra: "spanUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2216
|
+
};
|
|
2217
|
+
StzhRow = __decorate([
|
|
2218
|
+
ProxyCmp({
|
|
2219
|
+
inputs: ['content', 'items', 'justify', 'span', 'spanLarge', 'spanMedium', 'spanSmall', 'spanUltra']
|
|
2220
|
+
})
|
|
2221
|
+
], StzhRow);
|
|
2222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhRow, decorators: [{
|
|
2223
|
+
type: Component,
|
|
2224
|
+
args: [{
|
|
2225
|
+
selector: 'stzh-row',
|
|
2226
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2227
|
+
template: '<ng-content></ng-content>',
|
|
2228
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2229
|
+
inputs: ['content', 'items', 'justify', 'span', 'spanLarge', 'spanMedium', 'spanSmall', 'spanUltra'],
|
|
2230
|
+
}]
|
|
2231
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2232
|
+
let StzhSaptcha = class StzhSaptcha {
|
|
2233
|
+
constructor(c, r, z) {
|
|
2234
|
+
this.z = z;
|
|
2235
|
+
c.detach();
|
|
2236
|
+
this.el = r.nativeElement;
|
|
2237
|
+
}
|
|
2238
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSaptcha, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2239
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSaptcha, selector: "stzh-saptcha", inputs: { disabled: "disabled", error: "error", invalid: "invalid", localization: "localization", name: "name", numbers: "numbers", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2240
|
+
};
|
|
2241
|
+
StzhSaptcha = __decorate([
|
|
2242
|
+
ProxyCmp({
|
|
2243
|
+
inputs: ['disabled', 'error', 'invalid', 'localization', 'name', 'numbers', 'value']
|
|
2244
|
+
})
|
|
2245
|
+
], StzhSaptcha);
|
|
2246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSaptcha, decorators: [{
|
|
2247
|
+
type: Component,
|
|
2248
|
+
args: [{
|
|
2249
|
+
selector: 'stzh-saptcha',
|
|
2250
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2251
|
+
template: '<ng-content></ng-content>',
|
|
2252
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2253
|
+
inputs: ['disabled', 'error', 'invalid', 'localization', 'name', 'numbers', 'value'],
|
|
2254
|
+
}]
|
|
2255
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2256
|
+
let StzhScrollup = class StzhScrollup {
|
|
2257
|
+
constructor(c, r, z) {
|
|
2258
|
+
this.z = z;
|
|
2259
|
+
c.detach();
|
|
2260
|
+
this.el = r.nativeElement;
|
|
2261
|
+
}
|
|
2262
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhScrollup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2263
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhScrollup, selector: "stzh-scrollup", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2264
|
+
};
|
|
2265
|
+
StzhScrollup = __decorate([
|
|
2266
|
+
ProxyCmp({})
|
|
2267
|
+
], StzhScrollup);
|
|
2268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhScrollup, decorators: [{
|
|
2269
|
+
type: Component,
|
|
2270
|
+
args: [{
|
|
2271
|
+
selector: 'stzh-scrollup',
|
|
2272
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2273
|
+
template: '<ng-content></ng-content>',
|
|
2274
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2275
|
+
inputs: [],
|
|
2276
|
+
}]
|
|
2277
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2278
|
+
let StzhSearch = class StzhSearch {
|
|
2279
|
+
constructor(c, r, z) {
|
|
2280
|
+
this.z = z;
|
|
2281
|
+
c.detach();
|
|
2282
|
+
this.el = r.nativeElement;
|
|
2283
|
+
}
|
|
2284
|
+
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 }); }
|
|
2285
|
+
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", initialFetch: "initialFetch", limit: "limit", localization: "localization", preventUpdateUrl: "preventUpdateUrl", resultHeadingLevel: "resultHeadingLevel", templateResult: "templateResult", templateResultWrapperElement: "templateResultWrapperElement", templateResultWrapperProps: "templateResultWrapperProps", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2286
|
+
};
|
|
2287
|
+
StzhSearch = __decorate([
|
|
2288
|
+
ProxyCmp({
|
|
2289
|
+
inputs: ['api', 'autofetchAsideFilters', 'autofetchMainFilters', 'debounceTime', 'initialFetch', 'limit', 'localization', 'preventUpdateUrl', 'resultHeadingLevel', 'templateResult', 'templateResultWrapperElement', 'templateResultWrapperProps', 'variant']
|
|
2290
|
+
})
|
|
2291
|
+
], StzhSearch);
|
|
2292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSearch, decorators: [{
|
|
2293
|
+
type: Component,
|
|
2294
|
+
args: [{
|
|
2295
|
+
selector: 'stzh-search',
|
|
2296
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2297
|
+
template: '<ng-content></ng-content>',
|
|
2298
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2299
|
+
inputs: ['api', 'autofetchAsideFilters', 'autofetchMainFilters', 'debounceTime', 'initialFetch', 'limit', 'localization', 'preventUpdateUrl', 'resultHeadingLevel', 'templateResult', 'templateResultWrapperElement', 'templateResultWrapperProps', 'variant'],
|
|
2300
|
+
}]
|
|
2301
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2302
|
+
let StzhSection = class StzhSection {
|
|
2303
|
+
constructor(c, r, z) {
|
|
2304
|
+
this.z = z;
|
|
2305
|
+
c.detach();
|
|
2306
|
+
this.el = r.nativeElement;
|
|
2307
|
+
}
|
|
2308
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2309
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSection, selector: "stzh-section", inputs: { background: "background", breakout: "breakout", marginBottom: "marginBottom", marginTop: "marginTop", paddingBottom: "paddingBottom", paddingTop: "paddingTop", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2310
|
+
};
|
|
2311
|
+
StzhSection = __decorate([
|
|
2312
|
+
ProxyCmp({
|
|
2313
|
+
inputs: ['background', 'breakout', 'marginBottom', 'marginTop', 'paddingBottom', 'paddingTop', 'variant']
|
|
2314
|
+
})
|
|
2315
|
+
], StzhSection);
|
|
2316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSection, decorators: [{
|
|
2317
|
+
type: Component,
|
|
2318
|
+
args: [{
|
|
2319
|
+
selector: 'stzh-section',
|
|
2320
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2321
|
+
template: '<ng-content></ng-content>',
|
|
2322
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2323
|
+
inputs: ['background', 'breakout', 'marginBottom', 'marginTop', 'paddingBottom', 'paddingTop', 'variant'],
|
|
2324
|
+
}]
|
|
2325
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2326
|
+
let StzhShare = class StzhShare {
|
|
2327
|
+
constructor(c, r, z) {
|
|
2328
|
+
this.z = z;
|
|
2329
|
+
c.detach();
|
|
2330
|
+
this.el = r.nativeElement;
|
|
2331
|
+
}
|
|
2332
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhShare, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2333
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhShare, selector: "stzh-share", inputs: { localization: "localization", mailBody: "mailBody", mailSubject: "mailSubject", services: "services", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2334
|
+
};
|
|
2335
|
+
StzhShare = __decorate([
|
|
2336
|
+
ProxyCmp({
|
|
2337
|
+
inputs: ['localization', 'mailBody', 'mailSubject', 'services', 'url']
|
|
2338
|
+
})
|
|
2339
|
+
], StzhShare);
|
|
2340
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhShare, decorators: [{
|
|
2341
|
+
type: Component,
|
|
2342
|
+
args: [{
|
|
2343
|
+
selector: 'stzh-share',
|
|
2344
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2345
|
+
template: '<ng-content></ng-content>',
|
|
2346
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2347
|
+
inputs: ['localization', 'mailBody', 'mailSubject', 'services', 'url'],
|
|
2348
|
+
}]
|
|
2349
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2350
|
+
let StzhShow = class StzhShow {
|
|
2351
|
+
constructor(c, r, z) {
|
|
2352
|
+
this.z = z;
|
|
2353
|
+
c.detach();
|
|
2354
|
+
this.el = r.nativeElement;
|
|
2355
|
+
}
|
|
2356
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhShow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2357
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhShow, selector: "stzh-show", inputs: { closeKey: "closeKey", hideFromDate: "hideFromDate", large: "large", medium: "medium", mikro: "mikro", showFromDate: "showFromDate", small: "small", ultra: "ultra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2358
|
+
};
|
|
2359
|
+
StzhShow = __decorate([
|
|
2360
|
+
ProxyCmp({
|
|
2361
|
+
inputs: ['closeKey', 'hideFromDate', 'large', 'medium', 'mikro', 'showFromDate', 'small', 'ultra']
|
|
2362
|
+
})
|
|
2363
|
+
], StzhShow);
|
|
2364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhShow, decorators: [{
|
|
2365
|
+
type: Component,
|
|
2366
|
+
args: [{
|
|
2367
|
+
selector: 'stzh-show',
|
|
2368
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2369
|
+
template: '<ng-content></ng-content>',
|
|
2370
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2371
|
+
inputs: ['closeKey', 'hideFromDate', 'large', 'medium', 'mikro', 'showFromDate', 'small', 'ultra'],
|
|
2372
|
+
}]
|
|
2373
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2374
|
+
let StzhSitemap = class StzhSitemap {
|
|
2375
|
+
constructor(c, r, z) {
|
|
2376
|
+
this.z = z;
|
|
2377
|
+
c.detach();
|
|
2378
|
+
this.el = r.nativeElement;
|
|
2379
|
+
}
|
|
2380
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSitemap, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2381
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSitemap, selector: "stzh-sitemap", inputs: { items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2382
|
+
};
|
|
2383
|
+
StzhSitemap = __decorate([
|
|
2384
|
+
ProxyCmp({
|
|
2385
|
+
inputs: ['items']
|
|
2386
|
+
})
|
|
2387
|
+
], StzhSitemap);
|
|
2388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSitemap, decorators: [{
|
|
2389
|
+
type: Component,
|
|
2390
|
+
args: [{
|
|
2391
|
+
selector: 'stzh-sitemap',
|
|
2392
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2393
|
+
template: '<ng-content></ng-content>',
|
|
2394
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2395
|
+
inputs: ['items'],
|
|
2396
|
+
}]
|
|
2397
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2398
|
+
let StzhSkinPortalMitwirken = class StzhSkinPortalMitwirken {
|
|
2399
|
+
constructor(c, r, z) {
|
|
2400
|
+
this.z = z;
|
|
2401
|
+
c.detach();
|
|
2402
|
+
this.el = r.nativeElement;
|
|
2403
|
+
}
|
|
2404
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSkinPortalMitwirken, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2405
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSkinPortalMitwirken, selector: "stzh-skin-portal-mitwirken", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2406
|
+
};
|
|
2407
|
+
StzhSkinPortalMitwirken = __decorate([
|
|
2408
|
+
ProxyCmp({})
|
|
2409
|
+
], StzhSkinPortalMitwirken);
|
|
2410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSkinPortalMitwirken, decorators: [{
|
|
2411
|
+
type: Component,
|
|
2412
|
+
args: [{
|
|
2413
|
+
selector: 'stzh-skin-portal-mitwirken',
|
|
2414
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2415
|
+
template: '<ng-content></ng-content>',
|
|
2416
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2417
|
+
inputs: [],
|
|
2418
|
+
}]
|
|
2419
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2420
|
+
let StzhSkinStorybookPreview = class StzhSkinStorybookPreview {
|
|
2421
|
+
constructor(c, r, z) {
|
|
2422
|
+
this.z = z;
|
|
2423
|
+
c.detach();
|
|
2424
|
+
this.el = r.nativeElement;
|
|
2425
|
+
}
|
|
2426
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSkinStorybookPreview, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2427
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSkinStorybookPreview, selector: "stzh-skin-storybook-preview", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2428
|
+
};
|
|
2429
|
+
StzhSkinStorybookPreview = __decorate([
|
|
2430
|
+
ProxyCmp({})
|
|
2431
|
+
], StzhSkinStorybookPreview);
|
|
2432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSkinStorybookPreview, decorators: [{
|
|
2433
|
+
type: Component,
|
|
2434
|
+
args: [{
|
|
2435
|
+
selector: 'stzh-skin-storybook-preview',
|
|
2436
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2437
|
+
template: '<ng-content></ng-content>',
|
|
2438
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2439
|
+
inputs: [],
|
|
2440
|
+
}]
|
|
2441
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2442
|
+
let StzhSkiplink = class StzhSkiplink {
|
|
2443
|
+
constructor(c, r, z) {
|
|
2444
|
+
this.z = z;
|
|
2445
|
+
c.detach();
|
|
2446
|
+
this.el = r.nativeElement;
|
|
2447
|
+
proxyOutputs(this, this.el, ['stzhFocus', 'stzhBlur']);
|
|
2448
|
+
}
|
|
2449
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSkiplink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2450
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSkiplink, selector: "stzh-skiplink", inputs: { analyticsId: "analyticsId", href: "href", label: "label", linkAccesskey: "linkAccesskey", linkTitle: "linkTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2451
|
+
};
|
|
2452
|
+
StzhSkiplink = __decorate([
|
|
2453
|
+
ProxyCmp({
|
|
2454
|
+
inputs: ['analyticsId', 'href', 'label', 'linkAccesskey', 'linkTitle']
|
|
2455
|
+
})
|
|
2456
|
+
], StzhSkiplink);
|
|
2457
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSkiplink, decorators: [{
|
|
2458
|
+
type: Component,
|
|
2459
|
+
args: [{
|
|
2460
|
+
selector: 'stzh-skiplink',
|
|
2461
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2462
|
+
template: '<ng-content></ng-content>',
|
|
2463
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2464
|
+
inputs: ['analyticsId', 'href', 'label', 'linkAccesskey', 'linkTitle'],
|
|
2465
|
+
}]
|
|
2466
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2467
|
+
let StzhSortable = class StzhSortable {
|
|
2468
|
+
constructor(c, r, z) {
|
|
2469
|
+
this.z = z;
|
|
2470
|
+
c.detach();
|
|
2471
|
+
this.el = r.nativeElement;
|
|
2472
|
+
proxyOutputs(this, this.el, ['stzhUpdate', 'stzhDisable']);
|
|
2473
|
+
}
|
|
2474
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSortable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2475
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSortable, selector: "stzh-sortable", inputs: { container: "container", dataIdAttribute: "dataIdAttribute", disabled: "disabled", filterElements: "filterElements", ghostClone: "ghostClone", localization: "localization" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2476
|
+
};
|
|
2477
|
+
StzhSortable = __decorate([
|
|
2478
|
+
ProxyCmp({
|
|
2479
|
+
inputs: ['container', 'dataIdAttribute', 'disabled', 'filterElements', 'ghostClone', 'localization'],
|
|
2480
|
+
methods: ['toArray', 'sort', 'moveItem']
|
|
2481
|
+
})
|
|
2482
|
+
], StzhSortable);
|
|
2483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSortable, decorators: [{
|
|
2484
|
+
type: Component,
|
|
2485
|
+
args: [{
|
|
2486
|
+
selector: 'stzh-sortable',
|
|
2487
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2488
|
+
template: '<ng-content></ng-content>',
|
|
2489
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2490
|
+
inputs: ['container', 'dataIdAttribute', 'disabled', 'filterElements', 'ghostClone', 'localization'],
|
|
2491
|
+
}]
|
|
2492
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2493
|
+
let StzhSpace = class StzhSpace {
|
|
2494
|
+
constructor(c, r, z) {
|
|
2495
|
+
this.z = z;
|
|
2496
|
+
c.detach();
|
|
2497
|
+
this.el = r.nativeElement;
|
|
2498
|
+
}
|
|
2499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSpace, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2500
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSpace, selector: "stzh-space", inputs: { around: "around", border: "border", curve: "curve", items: "items", justify: "justify", size: "size", sizeLarge: "sizeLarge", sizeMedium: "sizeMedium", sizeSmall: "sizeSmall", sizeUltra: "sizeUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2501
|
+
};
|
|
2502
|
+
StzhSpace = __decorate([
|
|
2503
|
+
ProxyCmp({
|
|
2504
|
+
inputs: ['around', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra']
|
|
2505
|
+
})
|
|
2506
|
+
], StzhSpace);
|
|
2507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSpace, decorators: [{
|
|
2508
|
+
type: Component,
|
|
2509
|
+
args: [{
|
|
2510
|
+
selector: 'stzh-space',
|
|
2511
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2512
|
+
template: '<ng-content></ng-content>',
|
|
2513
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2514
|
+
inputs: ['around', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra'],
|
|
2515
|
+
}]
|
|
2516
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2517
|
+
let StzhStatus = class StzhStatus {
|
|
2518
|
+
constructor(c, r, z) {
|
|
2519
|
+
this.z = z;
|
|
2520
|
+
c.detach();
|
|
2521
|
+
this.el = r.nativeElement;
|
|
2522
|
+
}
|
|
2523
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2524
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhStatus, selector: "stzh-status", inputs: { label: "label", percent: "percent", type: "type", withLoadingbar: "withLoadingbar" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2525
|
+
};
|
|
2526
|
+
StzhStatus = __decorate([
|
|
2527
|
+
ProxyCmp({
|
|
2528
|
+
inputs: ['label', 'percent', 'type', 'withLoadingbar']
|
|
2529
|
+
})
|
|
2530
|
+
], StzhStatus);
|
|
2531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhStatus, decorators: [{
|
|
2532
|
+
type: Component,
|
|
2533
|
+
args: [{
|
|
2534
|
+
selector: 'stzh-status',
|
|
2535
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2536
|
+
template: '<ng-content></ng-content>',
|
|
2537
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2538
|
+
inputs: ['label', 'percent', 'type', 'withLoadingbar'],
|
|
2539
|
+
}]
|
|
2540
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2541
|
+
let StzhSticky = class StzhSticky {
|
|
2542
|
+
constructor(c, r, z) {
|
|
2543
|
+
this.z = z;
|
|
2544
|
+
c.detach();
|
|
2545
|
+
this.el = r.nativeElement;
|
|
2546
|
+
proxyOutputs(this, this.el, ['stzhStuckTop', 'stzhStuckBottom']);
|
|
2547
|
+
}
|
|
2548
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSticky, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2549
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhSticky, selector: "stzh-sticky", inputs: { bleeding: "bleeding", disableStickyBottom: "disableStickyBottom", disableStickyTop: "disableStickyTop", name: "name", position: "position", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2550
|
+
};
|
|
2551
|
+
StzhSticky = __decorate([
|
|
2552
|
+
ProxyCmp({
|
|
2553
|
+
inputs: ['bleeding', 'disableStickyBottom', 'disableStickyTop', 'name', 'position', 'variant']
|
|
2554
|
+
})
|
|
2555
|
+
], StzhSticky);
|
|
2556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhSticky, decorators: [{
|
|
2557
|
+
type: Component,
|
|
2558
|
+
args: [{
|
|
2559
|
+
selector: 'stzh-sticky',
|
|
2560
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2561
|
+
template: '<ng-content></ng-content>',
|
|
2562
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2563
|
+
inputs: ['bleeding', 'disableStickyBottom', 'disableStickyTop', 'name', 'position', 'variant'],
|
|
2564
|
+
}]
|
|
2565
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2566
|
+
let StzhStickyActions = class StzhStickyActions {
|
|
2567
|
+
constructor(c, r, z) {
|
|
2568
|
+
this.z = z;
|
|
2569
|
+
c.detach();
|
|
2570
|
+
this.el = r.nativeElement;
|
|
2571
|
+
}
|
|
2572
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhStickyActions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2573
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhStickyActions, selector: "stzh-sticky-actions", inputs: { pagetitleQuery: "pagetitleQuery" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2574
|
+
};
|
|
2575
|
+
StzhStickyActions = __decorate([
|
|
2576
|
+
ProxyCmp({
|
|
2577
|
+
inputs: ['pagetitleQuery']
|
|
2578
|
+
})
|
|
2579
|
+
], StzhStickyActions);
|
|
2580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhStickyActions, decorators: [{
|
|
2581
|
+
type: Component,
|
|
2582
|
+
args: [{
|
|
2583
|
+
selector: 'stzh-sticky-actions',
|
|
2584
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2585
|
+
template: '<ng-content></ng-content>',
|
|
2586
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2587
|
+
inputs: ['pagetitleQuery'],
|
|
2588
|
+
}]
|
|
2589
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2590
|
+
let StzhTable = class StzhTable {
|
|
2591
|
+
constructor(c, r, z) {
|
|
2592
|
+
this.z = z;
|
|
2593
|
+
c.detach();
|
|
2594
|
+
this.el = r.nativeElement;
|
|
2595
|
+
}
|
|
2596
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2597
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhTable, selector: "stzh-table", inputs: { disableMinWidth: "disableMinWidth", fixedLeft: "fixedLeft", fixedRight: "fixedRight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2598
|
+
};
|
|
2599
|
+
StzhTable = __decorate([
|
|
2600
|
+
ProxyCmp({
|
|
2601
|
+
inputs: ['disableMinWidth', 'fixedLeft', 'fixedRight']
|
|
2602
|
+
})
|
|
2603
|
+
], StzhTable);
|
|
2604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTable, decorators: [{
|
|
2605
|
+
type: Component,
|
|
2606
|
+
args: [{
|
|
2607
|
+
selector: 'stzh-table',
|
|
2608
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2609
|
+
template: '<ng-content></ng-content>',
|
|
2610
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2611
|
+
inputs: ['disableMinWidth', 'fixedLeft', 'fixedRight'],
|
|
2612
|
+
}]
|
|
2613
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2614
|
+
let StzhText = class StzhText {
|
|
2615
|
+
constructor(c, r, z) {
|
|
2616
|
+
this.z = z;
|
|
2617
|
+
c.detach();
|
|
2618
|
+
this.el = r.nativeElement;
|
|
2619
|
+
}
|
|
2620
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2621
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhText, selector: "stzh-text", inputs: { color: "color", curve: "curve", font: "font", lead: "lead", size: "size", sizeLarge: "sizeLarge", sizeMedium: "sizeMedium", sizeSmall: "sizeSmall", sizeUltra: "sizeUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2622
|
+
};
|
|
2623
|
+
StzhText = __decorate([
|
|
2624
|
+
ProxyCmp({
|
|
2625
|
+
inputs: ['color', 'curve', 'font', 'lead', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra']
|
|
2626
|
+
})
|
|
2627
|
+
], StzhText);
|
|
2628
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhText, decorators: [{
|
|
2629
|
+
type: Component,
|
|
2630
|
+
args: [{
|
|
2631
|
+
selector: 'stzh-text',
|
|
2632
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2633
|
+
template: '<ng-content></ng-content>',
|
|
2634
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2635
|
+
inputs: ['color', 'curve', 'font', 'lead', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra'],
|
|
2636
|
+
}]
|
|
2637
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2638
|
+
let StzhTextandimage = class StzhTextandimage {
|
|
2639
|
+
constructor(c, r, z) {
|
|
2640
|
+
this.z = z;
|
|
2641
|
+
c.detach();
|
|
2642
|
+
this.el = r.nativeElement;
|
|
2643
|
+
}
|
|
2644
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTextandimage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2645
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhTextandimage, selector: "stzh-textandimage", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2646
|
+
};
|
|
2647
|
+
StzhTextandimage = __decorate([
|
|
2648
|
+
ProxyCmp({
|
|
2649
|
+
inputs: ['size']
|
|
2650
|
+
})
|
|
2651
|
+
], StzhTextandimage);
|
|
2652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTextandimage, decorators: [{
|
|
2653
|
+
type: Component,
|
|
2654
|
+
args: [{
|
|
2655
|
+
selector: 'stzh-textandimage',
|
|
2656
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2657
|
+
template: '<ng-content></ng-content>',
|
|
2658
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2659
|
+
inputs: ['size'],
|
|
2660
|
+
}]
|
|
2661
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2662
|
+
let StzhTimeline = class StzhTimeline {
|
|
2663
|
+
constructor(c, r, z) {
|
|
2664
|
+
this.z = z;
|
|
2665
|
+
c.detach();
|
|
2666
|
+
this.el = r.nativeElement;
|
|
2667
|
+
proxyOutputs(this, this.el, ['stzhFoldableChange']);
|
|
2668
|
+
}
|
|
2669
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTimeline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2670
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhTimeline, selector: "stzh-timeline", inputs: { collapsible: "collapsible", foldable: "foldable", multiselectable: "multiselectable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2671
|
+
};
|
|
2672
|
+
StzhTimeline = __decorate([
|
|
2673
|
+
ProxyCmp({
|
|
2674
|
+
inputs: ['collapsible', 'foldable', 'multiselectable'],
|
|
2675
|
+
methods: ['setItemFocus', 'updateSteps']
|
|
2676
|
+
})
|
|
2677
|
+
], StzhTimeline);
|
|
2678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTimeline, decorators: [{
|
|
2679
|
+
type: Component,
|
|
2680
|
+
args: [{
|
|
2681
|
+
selector: 'stzh-timeline',
|
|
2682
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2683
|
+
template: '<ng-content></ng-content>',
|
|
2684
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2685
|
+
inputs: ['collapsible', 'foldable', 'multiselectable'],
|
|
2686
|
+
}]
|
|
2687
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2688
|
+
let StzhTimelineItem = class StzhTimelineItem {
|
|
2689
|
+
constructor(c, r, z) {
|
|
2690
|
+
this.z = z;
|
|
2691
|
+
c.detach();
|
|
2692
|
+
this.el = r.nativeElement;
|
|
2693
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhOpened', 'stzhClose', 'stzhClosed', 'stzhFocus', 'stzhBlur']);
|
|
2694
|
+
}
|
|
2695
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTimelineItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2696
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhTimelineItem, selector: "stzh-timeline-item", inputs: { analyticsId: "analyticsId", badge: "badge", badgeEmpty: "badgeEmpty", badgeType: "badgeType", collapsible: "collapsible", completed: "completed", description: "description", disabled: "disabled", foldable: "foldable", heading: "heading", headingLevel: "headingLevel", icon: "icon", open: "open", step: "step" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2697
|
+
};
|
|
2698
|
+
StzhTimelineItem = __decorate([
|
|
2699
|
+
ProxyCmp({
|
|
2700
|
+
inputs: ['analyticsId', 'badge', 'badgeEmpty', 'badgeType', 'collapsible', 'completed', 'description', 'disabled', 'foldable', 'heading', 'headingLevel', 'icon', 'open', 'step'],
|
|
2701
|
+
methods: ['show', 'hide', 'toggle']
|
|
2702
|
+
})
|
|
2703
|
+
], StzhTimelineItem);
|
|
2704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTimelineItem, decorators: [{
|
|
2705
|
+
type: Component,
|
|
2706
|
+
args: [{
|
|
2707
|
+
selector: 'stzh-timeline-item',
|
|
2708
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2709
|
+
template: '<ng-content></ng-content>',
|
|
2710
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2711
|
+
inputs: ['analyticsId', 'badge', 'badgeEmpty', 'badgeType', 'collapsible', 'completed', 'description', 'disabled', 'foldable', 'heading', 'headingLevel', 'icon', 'open', 'step'],
|
|
2712
|
+
}]
|
|
2713
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2714
|
+
let StzhTimepicker = class StzhTimepicker {
|
|
2715
|
+
constructor(c, r, z) {
|
|
2716
|
+
this.z = z;
|
|
2717
|
+
c.detach();
|
|
2718
|
+
this.el = r.nativeElement;
|
|
2719
|
+
proxyOutputs(this, this.el, ['stzhChange']);
|
|
2720
|
+
}
|
|
2721
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTimepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2722
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhTimepicker, selector: "stzh-timepicker", inputs: { a11yDescribedby: "a11yDescribedby", description: "description", descriptionLong: "descriptionLong", disabled: "disabled", error: "error", hideOptional: "hideOptional", invalid: "invalid", label: "label", localization: "localization", max: "max", min: "min", name: "name", open: "open", popoverPlacement: "popoverPlacement", readonly: "readonly", required: "required", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2723
|
+
};
|
|
2724
|
+
StzhTimepicker = __decorate([
|
|
2725
|
+
ProxyCmp({
|
|
2726
|
+
inputs: ['a11yDescribedby', 'description', 'descriptionLong', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'max', 'min', 'name', 'open', 'popoverPlacement', 'readonly', 'required', 'size', 'step', 'value']
|
|
2727
|
+
})
|
|
2728
|
+
], StzhTimepicker);
|
|
2729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTimepicker, decorators: [{
|
|
2730
|
+
type: Component,
|
|
2731
|
+
args: [{
|
|
2732
|
+
selector: 'stzh-timepicker',
|
|
2733
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2734
|
+
template: '<ng-content></ng-content>',
|
|
2735
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2736
|
+
inputs: ['a11yDescribedby', 'description', 'descriptionLong', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'localization', 'max', 'min', 'name', 'open', 'popoverPlacement', 'readonly', 'required', 'size', 'step', 'value'],
|
|
2737
|
+
}]
|
|
2738
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2739
|
+
let StzhToast = class StzhToast {
|
|
2740
|
+
constructor(c, r, z) {
|
|
2741
|
+
this.z = z;
|
|
2742
|
+
c.detach();
|
|
2743
|
+
this.el = r.nativeElement;
|
|
2744
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhOpened', 'stzhClose', 'stzhClosed']);
|
|
2745
|
+
}
|
|
2746
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2747
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhToast, selector: "stzh-toast", inputs: { hideClose: "hideClose", initialOpenAnimation: "initialOpenAnimation", label: "label", localization: "localization", open: "open", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2748
|
+
};
|
|
2749
|
+
StzhToast = __decorate([
|
|
2750
|
+
ProxyCmp({
|
|
2751
|
+
inputs: ['hideClose', 'initialOpenAnimation', 'label', 'localization', 'open', 'type'],
|
|
2752
|
+
methods: ['show', 'hide']
|
|
2753
|
+
})
|
|
2754
|
+
], StzhToast);
|
|
2755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhToast, decorators: [{
|
|
2756
|
+
type: Component,
|
|
2757
|
+
args: [{
|
|
2758
|
+
selector: 'stzh-toast',
|
|
2759
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2760
|
+
template: '<ng-content></ng-content>',
|
|
2761
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2762
|
+
inputs: ['hideClose', 'initialOpenAnimation', 'label', 'localization', 'open', 'type'],
|
|
2763
|
+
}]
|
|
2764
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2765
|
+
let StzhToastbar = class StzhToastbar {
|
|
2766
|
+
constructor(c, r, z) {
|
|
2767
|
+
this.z = z;
|
|
2768
|
+
c.detach();
|
|
2769
|
+
this.el = r.nativeElement;
|
|
2770
|
+
}
|
|
2771
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhToastbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2772
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhToastbar, selector: "stzh-toastbar", inputs: { hideAfter: "hideAfter", initialToasts: "initialToasts", max: "max" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2773
|
+
};
|
|
2774
|
+
StzhToastbar = __decorate([
|
|
2775
|
+
ProxyCmp({
|
|
2776
|
+
inputs: ['hideAfter', 'initialToasts', 'max'],
|
|
2777
|
+
methods: ['toast']
|
|
2778
|
+
})
|
|
2779
|
+
], StzhToastbar);
|
|
2780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhToastbar, decorators: [{
|
|
2781
|
+
type: Component,
|
|
2782
|
+
args: [{
|
|
2783
|
+
selector: 'stzh-toastbar',
|
|
2784
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2785
|
+
template: '<ng-content></ng-content>',
|
|
2786
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2787
|
+
inputs: ['hideAfter', 'initialToasts', 'max'],
|
|
2788
|
+
}]
|
|
2789
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2790
|
+
let StzhToggle = class StzhToggle {
|
|
2791
|
+
constructor(c, r, z) {
|
|
2792
|
+
this.z = z;
|
|
2793
|
+
c.detach();
|
|
2794
|
+
this.el = r.nativeElement;
|
|
2795
|
+
proxyOutputs(this, this.el, ['stzhChange', 'stzhFocus', 'stzhBlur']);
|
|
2796
|
+
}
|
|
2797
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2798
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhToggle, selector: "stzh-toggle", inputs: { a11yDescribedby: "a11yDescribedby", checked: "checked", defaultChecked: "defaultChecked", description: "description", descriptionLong: "descriptionLong", descriptionLongTitle: "descriptionLongTitle", disabled: "disabled", error: "error", hideOptional: "hideOptional", invalid: "invalid", label: "label", labelPosition: "labelPosition", localization: "localization", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2799
|
+
};
|
|
2800
|
+
StzhToggle = __decorate([
|
|
2801
|
+
ProxyCmp({
|
|
2802
|
+
inputs: ['a11yDescribedby', 'checked', 'defaultChecked', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'labelPosition', 'localization', 'name', 'required', 'value']
|
|
2803
|
+
})
|
|
2804
|
+
], StzhToggle);
|
|
2805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhToggle, decorators: [{
|
|
2806
|
+
type: Component,
|
|
2807
|
+
args: [{
|
|
2808
|
+
selector: 'stzh-toggle',
|
|
2809
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2810
|
+
template: '<ng-content></ng-content>',
|
|
2811
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2812
|
+
inputs: ['a11yDescribedby', 'checked', 'defaultChecked', 'description', 'descriptionLong', 'descriptionLongTitle', 'disabled', 'error', 'hideOptional', 'invalid', 'label', 'labelPosition', 'localization', 'name', 'required', 'value'],
|
|
2813
|
+
}]
|
|
2814
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2815
|
+
let StzhTooltip = class StzhTooltip {
|
|
2816
|
+
constructor(c, r, z) {
|
|
2817
|
+
this.z = z;
|
|
2818
|
+
c.detach();
|
|
2819
|
+
this.el = r.nativeElement;
|
|
2820
|
+
proxyOutputs(this, this.el, ['stzhOpen', 'stzhOpened', 'stzhClose', 'stzhClosed']);
|
|
2821
|
+
}
|
|
2822
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2823
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhTooltip, selector: "stzh-tooltip", inputs: { content: "content", distance: "distance", interactive: "interactive", label: "label", localization: "localization", open: "open", placement: "placement", skidding: "skidding", strategy: "strategy", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2824
|
+
};
|
|
2825
|
+
StzhTooltip = __decorate([
|
|
2826
|
+
ProxyCmp({
|
|
2827
|
+
inputs: ['content', 'distance', 'interactive', 'label', 'localization', 'open', 'placement', 'skidding', 'strategy', 'trigger'],
|
|
2828
|
+
methods: ['show', 'hide', 'toggle', 'update']
|
|
2829
|
+
})
|
|
2830
|
+
], StzhTooltip);
|
|
2831
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTooltip, decorators: [{
|
|
2832
|
+
type: Component,
|
|
2833
|
+
args: [{
|
|
2834
|
+
selector: 'stzh-tooltip',
|
|
2835
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2836
|
+
template: '<ng-content></ng-content>',
|
|
2837
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2838
|
+
inputs: ['content', 'distance', 'interactive', 'label', 'localization', 'open', 'placement', 'skidding', 'strategy', 'trigger'],
|
|
2839
|
+
}]
|
|
2840
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2841
|
+
let StzhTwocolumns = class StzhTwocolumns {
|
|
2842
|
+
constructor(c, r, z) {
|
|
2843
|
+
this.z = z;
|
|
2844
|
+
c.detach();
|
|
2845
|
+
this.el = r.nativeElement;
|
|
2846
|
+
}
|
|
2847
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTwocolumns, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2848
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhTwocolumns, selector: "stzh-twocolumns", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2849
|
+
};
|
|
2850
|
+
StzhTwocolumns = __decorate([
|
|
2851
|
+
ProxyCmp({})
|
|
2852
|
+
], StzhTwocolumns);
|
|
2853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhTwocolumns, decorators: [{
|
|
2854
|
+
type: Component,
|
|
2855
|
+
args: [{
|
|
2856
|
+
selector: 'stzh-twocolumns',
|
|
2857
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2858
|
+
template: '<ng-content></ng-content>',
|
|
2859
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2860
|
+
inputs: [],
|
|
2861
|
+
}]
|
|
2862
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2863
|
+
let StzhUpload = class StzhUpload {
|
|
2864
|
+
constructor(c, r, z) {
|
|
2865
|
+
this.z = z;
|
|
2866
|
+
c.detach();
|
|
2867
|
+
this.el = r.nativeElement;
|
|
2868
|
+
proxyOutputs(this, this.el, ['stzhFileAdded', 'stzhFilesAdded', 'stzhFileRemove', 'stzhFileRemoved', 'stzhSending', 'stzhSendingMultiple', 'stzhProcessing', 'stzhProcessingMultiple', 'stzhProgress', 'stzhProgressTotal', 'stzhError', 'stzhErrorMultiple', 'stzhSuccess', 'stzhSuccessMultiple', 'stzhCanceled', 'stzhCanceledMultiple', 'stzhComplete', 'stzhCompleteMultiple']);
|
|
2869
|
+
}
|
|
2870
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2871
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhUpload, selector: "stzh-upload", inputs: { accept: "accept", acceptedFiles: "acceptedFiles", autoProcessQueue: "autoProcessQueue", button: "button", chunkSize: "chunkSize", chunking: "chunking", chunksUploaded: "chunksUploaded", defaultHeaders: "defaultHeaders", description: "description", disabled: "disabled", downloadDisabled: "downloadDisabled", downloadDisabledWhileProcessing: "downloadDisabledWhileProcessing", error: "error", existingFiles: "existingFiles", filesizeBase: "filesizeBase", forceChunking: "forceChunking", headers: "headers", heading: "heading", hiddenInputContainer: "hiddenInputContainer", hideProgress: "hideProgress", hideProgressWhileIdle: "hideProgressWhileIdle", invalid: "invalid", label: "label", localization: "localization", maxFiles: "maxFiles", maxFilesize: "maxFilesize", method: "method", name: "name", parallelChunkUploads: "parallelChunkUploads", parallelUploads: "parallelUploads", preventHiddenInputClear: "preventHiddenInputClear", retryChunks: "retryChunks", retryChunksLimit: "retryChunksLimit", uploadMultiple: "uploadMultiple", url: "url", withCredentials: "withCredentials" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2872
|
+
};
|
|
2873
|
+
StzhUpload = __decorate([
|
|
2874
|
+
ProxyCmp({
|
|
2875
|
+
inputs: ['accept', 'acceptedFiles', 'autoProcessQueue', 'button', 'chunkSize', 'chunking', 'chunksUploaded', 'defaultHeaders', 'description', 'disabled', 'downloadDisabled', 'downloadDisabledWhileProcessing', 'error', 'existingFiles', 'filesizeBase', 'forceChunking', 'headers', 'heading', 'hiddenInputContainer', 'hideProgress', 'hideProgressWhileIdle', 'invalid', 'label', 'localization', 'maxFiles', 'maxFilesize', 'method', 'name', 'parallelChunkUploads', 'parallelUploads', 'preventHiddenInputClear', 'retryChunks', 'retryChunksLimit', 'uploadMultiple', 'url', 'withCredentials'],
|
|
2876
|
+
methods: ['processQueue', 'removeFile', 'removeAllFiles']
|
|
2877
|
+
})
|
|
2878
|
+
], StzhUpload);
|
|
2879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhUpload, decorators: [{
|
|
2880
|
+
type: Component,
|
|
2881
|
+
args: [{
|
|
2882
|
+
selector: 'stzh-upload',
|
|
2883
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2884
|
+
template: '<ng-content></ng-content>',
|
|
2885
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2886
|
+
inputs: ['accept', 'acceptedFiles', 'autoProcessQueue', 'button', 'chunkSize', 'chunking', 'chunksUploaded', 'defaultHeaders', 'description', 'disabled', 'downloadDisabled', 'downloadDisabledWhileProcessing', 'error', 'existingFiles', 'filesizeBase', 'forceChunking', 'headers', 'heading', 'hiddenInputContainer', 'hideProgress', 'hideProgressWhileIdle', 'invalid', 'label', 'localization', 'maxFiles', 'maxFilesize', 'method', 'name', 'parallelChunkUploads', 'parallelUploads', 'preventHiddenInputClear', 'retryChunks', 'retryChunksLimit', 'uploadMultiple', 'url', 'withCredentials'],
|
|
2887
|
+
}]
|
|
2888
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2889
|
+
let StzhVbzCarousel = class StzhVbzCarousel {
|
|
2890
|
+
constructor(c, r, z) {
|
|
2891
|
+
this.z = z;
|
|
2892
|
+
c.detach();
|
|
2893
|
+
this.el = r.nativeElement;
|
|
2894
|
+
}
|
|
2895
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVbzCarousel, selector: "stzh-vbz-carousel", inputs: { autoplayTimeout: "autoplayTimeout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2897
|
+
};
|
|
2898
|
+
StzhVbzCarousel = __decorate([
|
|
2899
|
+
ProxyCmp({
|
|
2900
|
+
inputs: ['autoplayTimeout']
|
|
2901
|
+
})
|
|
2902
|
+
], StzhVbzCarousel);
|
|
2903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzCarousel, decorators: [{
|
|
2904
|
+
type: Component,
|
|
2905
|
+
args: [{
|
|
2906
|
+
selector: 'stzh-vbz-carousel',
|
|
2907
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2908
|
+
template: '<ng-content></ng-content>',
|
|
2909
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2910
|
+
inputs: ['autoplayTimeout'],
|
|
2911
|
+
}]
|
|
2912
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2913
|
+
let StzhVbzLinechip = class StzhVbzLinechip {
|
|
2914
|
+
constructor(c, r, z) {
|
|
2915
|
+
this.z = z;
|
|
2916
|
+
c.detach();
|
|
2917
|
+
this.el = r.nativeElement;
|
|
2918
|
+
proxyOutputs(this, this.el, ['stzhFocus', 'stzhBlur']);
|
|
2919
|
+
}
|
|
2920
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzLinechip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2921
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVbzLinechip, selector: "stzh-vbz-linechip", inputs: { active: "active", alert: "alert", analyticsId: "analyticsId", disabled: "disabled", global: "global", line: "line" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2922
|
+
};
|
|
2923
|
+
StzhVbzLinechip = __decorate([
|
|
2924
|
+
ProxyCmp({
|
|
2925
|
+
inputs: ['active', 'alert', 'analyticsId', 'disabled', 'global', 'line']
|
|
2926
|
+
})
|
|
2927
|
+
], StzhVbzLinechip);
|
|
2928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzLinechip, decorators: [{
|
|
2929
|
+
type: Component,
|
|
2930
|
+
args: [{
|
|
2931
|
+
selector: 'stzh-vbz-linechip',
|
|
2932
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2933
|
+
template: '<ng-content></ng-content>',
|
|
2934
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2935
|
+
inputs: ['active', 'alert', 'analyticsId', 'disabled', 'global', 'line'],
|
|
2936
|
+
}]
|
|
2937
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2938
|
+
let StzhVbzMajorticker = class StzhVbzMajorticker {
|
|
2939
|
+
constructor(c, r, z) {
|
|
2940
|
+
this.z = z;
|
|
2941
|
+
c.detach();
|
|
2942
|
+
this.el = r.nativeElement;
|
|
2943
|
+
proxyOutputs(this, this.el, ['stzhDisturbanceFetched']);
|
|
2944
|
+
}
|
|
2945
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzMajorticker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2946
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVbzMajorticker, selector: "stzh-vbz-majorticker", inputs: { api: "api", data: "data", dateAdapter: "dateAdapter", localization: "localization", moreInfoLink: "moreInfoLink", showCloseKey: "showCloseKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2947
|
+
};
|
|
2948
|
+
StzhVbzMajorticker = __decorate([
|
|
2949
|
+
ProxyCmp({
|
|
2950
|
+
inputs: ['api', 'data', 'dateAdapter', 'localization', 'moreInfoLink', 'showCloseKey'],
|
|
2951
|
+
methods: ['getGhettoboxShown', 'getDisturbance']
|
|
2952
|
+
})
|
|
2953
|
+
], StzhVbzMajorticker);
|
|
2954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzMajorticker, decorators: [{
|
|
2955
|
+
type: Component,
|
|
2956
|
+
args: [{
|
|
2957
|
+
selector: 'stzh-vbz-majorticker',
|
|
2958
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2959
|
+
template: '<ng-content></ng-content>',
|
|
2960
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2961
|
+
inputs: ['api', 'data', 'dateAdapter', 'localization', 'moreInfoLink', 'showCloseKey'],
|
|
2962
|
+
}]
|
|
2963
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2964
|
+
let StzhVbzTicker = class StzhVbzTicker {
|
|
2965
|
+
constructor(c, r, z) {
|
|
2966
|
+
this.z = z;
|
|
2967
|
+
c.detach();
|
|
2968
|
+
this.el = r.nativeElement;
|
|
2969
|
+
}
|
|
2970
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzTicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2971
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVbzTicker, selector: "stzh-vbz-ticker", inputs: { api: "api", data: "data", dateAdapter: "dateAdapter", localization: "localization", moreInfoLink: "moreInfoLink" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2972
|
+
};
|
|
2973
|
+
StzhVbzTicker = __decorate([
|
|
2974
|
+
ProxyCmp({
|
|
2975
|
+
inputs: ['api', 'data', 'dateAdapter', 'localization', 'moreInfoLink']
|
|
2976
|
+
})
|
|
2977
|
+
], StzhVbzTicker);
|
|
2978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVbzTicker, decorators: [{
|
|
2979
|
+
type: Component,
|
|
2980
|
+
args: [{
|
|
2981
|
+
selector: 'stzh-vbz-ticker',
|
|
2982
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2983
|
+
template: '<ng-content></ng-content>',
|
|
2984
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2985
|
+
inputs: ['api', 'data', 'dateAdapter', 'localization', 'moreInfoLink'],
|
|
2986
|
+
}]
|
|
2987
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2988
|
+
let StzhVisuallyhidden = class StzhVisuallyhidden {
|
|
2989
|
+
constructor(c, r, z) {
|
|
2990
|
+
this.z = z;
|
|
2991
|
+
c.detach();
|
|
2992
|
+
this.el = r.nativeElement;
|
|
2993
|
+
}
|
|
2994
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVisuallyhidden, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2995
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVisuallyhidden, selector: "stzh-visuallyhidden", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2996
|
+
};
|
|
2997
|
+
StzhVisuallyhidden = __decorate([
|
|
2998
|
+
ProxyCmp({})
|
|
2999
|
+
], StzhVisuallyhidden);
|
|
3000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVisuallyhidden, decorators: [{
|
|
3001
|
+
type: Component,
|
|
3002
|
+
args: [{
|
|
3003
|
+
selector: 'stzh-visuallyhidden',
|
|
3004
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3005
|
+
template: '<ng-content></ng-content>',
|
|
3006
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3007
|
+
inputs: [],
|
|
3008
|
+
}]
|
|
3009
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3010
|
+
let StzhVspace = class StzhVspace {
|
|
3011
|
+
constructor(c, r, z) {
|
|
3012
|
+
this.z = z;
|
|
3013
|
+
c.detach();
|
|
3014
|
+
this.el = r.nativeElement;
|
|
3015
|
+
}
|
|
3016
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVspace, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3017
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhVspace, selector: "stzh-vspace", inputs: { around: "around", aroundBottom: "aroundBottom", aroundTop: "aroundTop", border: "border", curve: "curve", items: "items", justify: "justify", size: "size", sizeLarge: "sizeLarge", sizeMedium: "sizeMedium", sizeSmall: "sizeSmall", sizeUltra: "sizeUltra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3018
|
+
};
|
|
3019
|
+
StzhVspace = __decorate([
|
|
3020
|
+
ProxyCmp({
|
|
3021
|
+
inputs: ['around', 'aroundBottom', 'aroundTop', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra']
|
|
3022
|
+
})
|
|
3023
|
+
], StzhVspace);
|
|
3024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhVspace, decorators: [{
|
|
3025
|
+
type: Component,
|
|
3026
|
+
args: [{
|
|
3027
|
+
selector: 'stzh-vspace',
|
|
3028
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3029
|
+
template: '<ng-content></ng-content>',
|
|
3030
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3031
|
+
inputs: ['around', 'aroundBottom', 'aroundTop', 'border', 'curve', 'items', 'justify', 'size', 'sizeLarge', 'sizeMedium', 'sizeSmall', 'sizeUltra'],
|
|
3032
|
+
}]
|
|
3033
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3034
|
+
let StzhYoutube = class StzhYoutube {
|
|
3035
|
+
constructor(c, r, z) {
|
|
3036
|
+
this.z = z;
|
|
3037
|
+
c.detach();
|
|
3038
|
+
this.el = r.nativeElement;
|
|
3039
|
+
}
|
|
3040
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhYoutube, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3041
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StzhYoutube, selector: "stzh-youtube", inputs: { cookie: "cookie", cookieExpires: "cookieExpires", localization: "localization", skipPreview: "skipPreview", skipPreviewIfCookieAccepted: "skipPreviewIfCookieAccepted", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3042
|
+
};
|
|
3043
|
+
StzhYoutube = __decorate([
|
|
3044
|
+
ProxyCmp({
|
|
3045
|
+
inputs: ['cookie', 'cookieExpires', 'localization', 'skipPreview', 'skipPreviewIfCookieAccepted', 'url']
|
|
3046
|
+
})
|
|
3047
|
+
], StzhYoutube);
|
|
3048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhYoutube, decorators: [{
|
|
3049
|
+
type: Component,
|
|
3050
|
+
args: [{
|
|
3051
|
+
selector: 'stzh-youtube',
|
|
3052
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3053
|
+
template: '<ng-content></ng-content>',
|
|
3054
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3055
|
+
inputs: ['cookie', 'cookieExpires', 'localization', 'skipPreview', 'skipPreviewIfCookieAccepted', 'url'],
|
|
3056
|
+
}]
|
|
3057
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3058
|
+
|
|
3059
|
+
const DIRECTIVES = [
|
|
3060
|
+
StzhAccordion,
|
|
3061
|
+
StzhAccordionItem,
|
|
3062
|
+
StzhActions,
|
|
3063
|
+
StzhActionset,
|
|
3064
|
+
StzhAmount,
|
|
3065
|
+
StzhAnchornav,
|
|
3066
|
+
StzhAppointments,
|
|
3067
|
+
StzhArchivelist,
|
|
3068
|
+
StzhAudio,
|
|
3069
|
+
StzhBadge,
|
|
3070
|
+
StzhBanner,
|
|
3071
|
+
StzhBreadcrumb,
|
|
3072
|
+
StzhButton,
|
|
3073
|
+
StzhButtongroup,
|
|
3074
|
+
StzhCalendar,
|
|
3075
|
+
StzhCard,
|
|
3076
|
+
StzhCardNavigation,
|
|
3077
|
+
StzhCardSearchresult,
|
|
3078
|
+
StzhCardlist,
|
|
3079
|
+
StzhCarousel,
|
|
3080
|
+
StzhCell,
|
|
3081
|
+
StzhChart,
|
|
3082
|
+
StzhCheckbox,
|
|
3083
|
+
StzhCheckboxgroup,
|
|
3084
|
+
StzhChip,
|
|
3085
|
+
StzhChipSelect,
|
|
3086
|
+
StzhClamp,
|
|
3087
|
+
StzhContact,
|
|
3088
|
+
StzhContainer,
|
|
3089
|
+
StzhContent,
|
|
3090
|
+
StzhCspace,
|
|
3091
|
+
StzhCta,
|
|
3092
|
+
StzhDatalist,
|
|
3093
|
+
StzhDatalistItem,
|
|
3094
|
+
StzhDatamessagelist,
|
|
3095
|
+
StzhDatamessagelistItem,
|
|
3096
|
+
StzhDatatable,
|
|
3097
|
+
StzhDatepicker,
|
|
3098
|
+
StzhDetails,
|
|
3099
|
+
StzhDialog,
|
|
3100
|
+
StzhDisturber,
|
|
3101
|
+
StzhDropdown,
|
|
3102
|
+
StzhEditor,
|
|
3103
|
+
StzhEventinfo,
|
|
3104
|
+
StzhFieldset,
|
|
3105
|
+
StzhFigure,
|
|
3106
|
+
StzhFlyingfocus,
|
|
3107
|
+
StzhFooter,
|
|
3108
|
+
StzhGallery,
|
|
3109
|
+
StzhGhettobox,
|
|
3110
|
+
StzhHeader,
|
|
3111
|
+
StzhHeading,
|
|
3112
|
+
StzhHr,
|
|
3113
|
+
StzhHspace,
|
|
3114
|
+
StzhIcon,
|
|
3115
|
+
StzhIframe,
|
|
3116
|
+
StzhImagecomparison,
|
|
3117
|
+
StzhInput,
|
|
3118
|
+
StzhInvert,
|
|
3119
|
+
StzhLink,
|
|
3120
|
+
StzhList,
|
|
3121
|
+
StzhListItem,
|
|
3122
|
+
StzhLoader,
|
|
3123
|
+
StzhLoadingbar,
|
|
3124
|
+
StzhMenu,
|
|
3125
|
+
StzhMenuItem,
|
|
3126
|
+
StzhMessage,
|
|
3127
|
+
StzhMicrositeTeaserlist,
|
|
3128
|
+
StzhMonthyearpicker,
|
|
3129
|
+
StzhOlmap,
|
|
3130
|
+
StzhOverlay,
|
|
3131
|
+
StzhPageSkiplinks,
|
|
3132
|
+
StzhPagebottom,
|
|
3133
|
+
StzhPagecontent,
|
|
3134
|
+
StzhPagetitle,
|
|
3135
|
+
StzhPagetitleHero,
|
|
3136
|
+
StzhPagination,
|
|
3137
|
+
StzhPanorama,
|
|
3138
|
+
StzhPopover,
|
|
3139
|
+
StzhPrint,
|
|
3140
|
+
StzhProgressbar,
|
|
3141
|
+
StzhProgressbarItem,
|
|
3142
|
+
StzhRadio,
|
|
3143
|
+
StzhRadiogroup,
|
|
3144
|
+
StzhRatio,
|
|
3145
|
+
StzhReadspeaker,
|
|
3146
|
+
StzhRichtext,
|
|
3147
|
+
StzhRow,
|
|
3148
|
+
StzhSaptcha,
|
|
3149
|
+
StzhScrollup,
|
|
3150
|
+
StzhSearch,
|
|
3151
|
+
StzhSection,
|
|
3152
|
+
StzhShare,
|
|
3153
|
+
StzhShow,
|
|
3154
|
+
StzhSitemap,
|
|
3155
|
+
StzhSkinPortalMitwirken,
|
|
3156
|
+
StzhSkinStorybookPreview,
|
|
3157
|
+
StzhSkiplink,
|
|
3158
|
+
StzhSortable,
|
|
3159
|
+
StzhSpace,
|
|
3160
|
+
StzhStatus,
|
|
3161
|
+
StzhSticky,
|
|
3162
|
+
StzhStickyActions,
|
|
3163
|
+
StzhTable,
|
|
3164
|
+
StzhText,
|
|
3165
|
+
StzhTextandimage,
|
|
3166
|
+
StzhTimeline,
|
|
3167
|
+
StzhTimelineItem,
|
|
3168
|
+
StzhTimepicker,
|
|
3169
|
+
StzhToast,
|
|
3170
|
+
StzhToastbar,
|
|
3171
|
+
StzhToggle,
|
|
3172
|
+
StzhTooltip,
|
|
3173
|
+
StzhTwocolumns,
|
|
3174
|
+
StzhUpload,
|
|
3175
|
+
StzhVbzCarousel,
|
|
3176
|
+
StzhVbzLinechip,
|
|
3177
|
+
StzhVbzMajorticker,
|
|
3178
|
+
StzhVbzTicker,
|
|
3179
|
+
StzhVisuallyhidden,
|
|
3180
|
+
StzhVspace,
|
|
3181
|
+
StzhYoutube
|
|
3182
|
+
];
|
|
3183
|
+
|
|
3184
|
+
class ValueAccessor {
|
|
3185
|
+
constructor(el) {
|
|
3186
|
+
this.el = el;
|
|
3187
|
+
this.onChange = () => { };
|
|
3188
|
+
this.onTouched = () => { };
|
|
3189
|
+
}
|
|
3190
|
+
writeValue(value) {
|
|
3191
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
3192
|
+
}
|
|
3193
|
+
handleChangeEvent(value) {
|
|
3194
|
+
if (value !== this.lastValue) {
|
|
3195
|
+
this.lastValue = value;
|
|
3196
|
+
this.onChange(value);
|
|
3197
|
+
}
|
|
3198
|
+
}
|
|
3199
|
+
_handleBlurEvent() {
|
|
3200
|
+
this.onTouched();
|
|
3201
|
+
}
|
|
3202
|
+
registerOnChange(fn) {
|
|
3203
|
+
this.onChange = fn;
|
|
3204
|
+
}
|
|
3205
|
+
registerOnTouched(fn) {
|
|
3206
|
+
this.onTouched = fn;
|
|
3207
|
+
}
|
|
3208
|
+
setDisabledState(isDisabled) {
|
|
3209
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
3210
|
+
}
|
|
3211
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3212
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
3213
|
+
}
|
|
3214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
3215
|
+
type: Directive,
|
|
3216
|
+
args: [{}]
|
|
3217
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
3218
|
+
type: HostListener,
|
|
3219
|
+
args: ['focusout']
|
|
3220
|
+
}] } });
|
|
3221
|
+
|
|
3222
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
3223
|
+
constructor(el) {
|
|
3224
|
+
super(el);
|
|
3225
|
+
}
|
|
3226
|
+
writeValue(value) {
|
|
3227
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
3228
|
+
}
|
|
3229
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3230
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: BooleanValueAccessor, selector: "stzh-checkbox, stzh-toggle, stzh-radio, stzh-button[type=radio], stzh-card", host: { listeners: { "stzhChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
3231
|
+
{
|
|
3232
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3233
|
+
useExisting: BooleanValueAccessor,
|
|
3234
|
+
multi: true
|
|
3235
|
+
}
|
|
3236
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3237
|
+
}
|
|
3238
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
3239
|
+
type: Directive,
|
|
3240
|
+
args: [{
|
|
3241
|
+
/* tslint:disable-next-line:directive-selector */
|
|
3242
|
+
selector: 'stzh-checkbox, stzh-toggle, stzh-radio, stzh-button[type=radio], stzh-card',
|
|
3243
|
+
host: {
|
|
3244
|
+
'(stzhChange)': 'handleChangeEvent($event.target.checked)'
|
|
3245
|
+
},
|
|
3246
|
+
providers: [
|
|
3247
|
+
{
|
|
3248
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3249
|
+
useExisting: BooleanValueAccessor,
|
|
3250
|
+
multi: true
|
|
3251
|
+
}
|
|
3252
|
+
]
|
|
3253
|
+
}]
|
|
3254
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3255
|
+
|
|
3256
|
+
class NumericValueAccessor extends ValueAccessor {
|
|
3257
|
+
constructor(el) {
|
|
3258
|
+
super(el);
|
|
3259
|
+
}
|
|
3260
|
+
registerOnChange(fn) {
|
|
3261
|
+
super.registerOnChange(value => {
|
|
3262
|
+
fn(value === '' ? null : parseFloat(value));
|
|
3263
|
+
});
|
|
3264
|
+
}
|
|
3265
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3266
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NumericValueAccessor, selector: "stzh-input[type=number], stzh-amount:not(:has(stzh-dropdown)), stzh-pagination", host: { listeners: { "stzhChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
3267
|
+
{
|
|
3268
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3269
|
+
useExisting: NumericValueAccessor,
|
|
3270
|
+
multi: true
|
|
3271
|
+
}
|
|
3272
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3273
|
+
}
|
|
3274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
3275
|
+
type: Directive,
|
|
3276
|
+
args: [{
|
|
3277
|
+
/* tslint:disable-next-line:directive-selector */
|
|
3278
|
+
selector: 'stzh-input[type=number], stzh-amount:not(:has(stzh-dropdown)), stzh-pagination',
|
|
3279
|
+
host: {
|
|
3280
|
+
'(stzhChange)': 'handleChangeEvent($event.target.value)'
|
|
3281
|
+
},
|
|
3282
|
+
providers: [
|
|
3283
|
+
{
|
|
3284
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3285
|
+
useExisting: NumericValueAccessor,
|
|
3286
|
+
multi: true
|
|
3287
|
+
}
|
|
3288
|
+
]
|
|
3289
|
+
}]
|
|
3290
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3291
|
+
|
|
3292
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
3293
|
+
constructor(el) {
|
|
3294
|
+
super(el);
|
|
3295
|
+
}
|
|
3296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3297
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SelectValueAccessor, selector: "stzh-radiogroup, stzh-dropdown, stzh-checkboxgroup", host: { listeners: { "stzhChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
3298
|
+
{
|
|
3299
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3300
|
+
useExisting: SelectValueAccessor,
|
|
3301
|
+
multi: true
|
|
3302
|
+
}
|
|
3303
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3304
|
+
}
|
|
3305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
3306
|
+
type: Directive,
|
|
3307
|
+
args: [{
|
|
3308
|
+
/* tslint:disable-next-line:directive-selector */
|
|
3309
|
+
selector: 'stzh-radiogroup, stzh-dropdown, stzh-checkboxgroup',
|
|
3310
|
+
host: {
|
|
3311
|
+
'(stzhChange)': 'handleChangeEvent($event.target.value)'
|
|
3312
|
+
},
|
|
3313
|
+
providers: [
|
|
3314
|
+
{
|
|
3315
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3316
|
+
useExisting: SelectValueAccessor,
|
|
3317
|
+
multi: true
|
|
3318
|
+
}
|
|
3319
|
+
]
|
|
3320
|
+
}]
|
|
3321
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3322
|
+
|
|
3323
|
+
class TextValueAccessor extends ValueAccessor {
|
|
3324
|
+
constructor(el) {
|
|
3325
|
+
super(el);
|
|
3326
|
+
}
|
|
3327
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3328
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TextValueAccessor, selector: "stzh-input:not([type=number]):not([stzhAhvNumber]), stzh-datepicker, stzh-calendar, stzh-saptcha, stzh-timepicker, stzh-monthyearpicker", host: { listeners: { "stzhChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
3329
|
+
{
|
|
3330
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3331
|
+
useExisting: TextValueAccessor,
|
|
3332
|
+
multi: true
|
|
3333
|
+
}
|
|
3334
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3335
|
+
}
|
|
3336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
3337
|
+
type: Directive,
|
|
3338
|
+
args: [{
|
|
3339
|
+
/* tslint:disable-next-line:directive-selector */
|
|
3340
|
+
selector: 'stzh-input:not([type=number]):not([stzhAhvNumber]), stzh-datepicker, stzh-calendar, stzh-saptcha, stzh-timepicker, stzh-monthyearpicker',
|
|
3341
|
+
host: {
|
|
3342
|
+
'(stzhChange)': 'handleChangeEvent($event.target.value)'
|
|
3343
|
+
},
|
|
3344
|
+
providers: [
|
|
3345
|
+
{
|
|
3346
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3347
|
+
useExisting: TextValueAccessor,
|
|
3348
|
+
multi: true
|
|
3349
|
+
}
|
|
3350
|
+
]
|
|
3351
|
+
}]
|
|
3352
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
3353
|
+
|
|
3354
|
+
const declarations = [
|
|
3355
|
+
...DIRECTIVES,
|
|
3356
|
+
BooleanValueAccessor,
|
|
3357
|
+
NumericValueAccessor,
|
|
3358
|
+
SelectValueAccessor,
|
|
3359
|
+
TextValueAccessor
|
|
3360
|
+
];
|
|
3361
|
+
class StzhComponentsAngularModule {
|
|
3362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3363
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, declarations: [StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipSelect, StzhClamp, StzhContact, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventinfo, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGhettobox, StzhHeader, StzhHeading, StzhHr, StzhHspace, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagination, StzhPanorama, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, BooleanValueAccessor,
|
|
3364
|
+
NumericValueAccessor,
|
|
3365
|
+
SelectValueAccessor,
|
|
3366
|
+
TextValueAccessor], exports: [StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipSelect, StzhClamp, StzhContact, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventinfo, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGhettobox, StzhHeader, StzhHeading, StzhHr, StzhHspace, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagination, StzhPanorama, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, BooleanValueAccessor,
|
|
3367
|
+
NumericValueAccessor,
|
|
3368
|
+
SelectValueAccessor,
|
|
3369
|
+
TextValueAccessor] }); }
|
|
3370
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, providers: [
|
|
3371
|
+
{
|
|
3372
|
+
provide: APP_INITIALIZER,
|
|
3373
|
+
useFactory: () => defineCustomElements,
|
|
3374
|
+
multi: true
|
|
3375
|
+
},
|
|
3376
|
+
] }); }
|
|
3377
|
+
}
|
|
3378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StzhComponentsAngularModule, decorators: [{
|
|
3379
|
+
type: NgModule,
|
|
3380
|
+
args: [{
|
|
3381
|
+
declarations: declarations,
|
|
3382
|
+
providers: [
|
|
3383
|
+
{
|
|
3384
|
+
provide: APP_INITIALIZER,
|
|
3385
|
+
useFactory: () => defineCustomElements,
|
|
3386
|
+
multi: true
|
|
3387
|
+
},
|
|
3388
|
+
],
|
|
3389
|
+
exports: declarations
|
|
3390
|
+
}]
|
|
3391
|
+
}] });
|
|
3392
|
+
|
|
3393
|
+
/*
|
|
3394
|
+
* Public API Surface of stzh-components-angular
|
|
3395
|
+
*/
|
|
3396
|
+
|
|
3397
|
+
/**
|
|
3398
|
+
* Generated bundle index. Do not edit.
|
|
3399
|
+
*/
|
|
3400
|
+
|
|
3401
|
+
export { BooleanValueAccessor, DIRECTIVES, NumericValueAccessor, SelectValueAccessor, StzhAccordion, StzhAccordionItem, StzhActions, StzhActionset, StzhAmount, StzhAnchornav, StzhAppointments, StzhArchivelist, StzhAudio, StzhBadge, StzhBanner, StzhBreadcrumb, StzhButton, StzhButtongroup, StzhCalendar, StzhCard, StzhCardNavigation, StzhCardSearchresult, StzhCardlist, StzhCarousel, StzhCell, StzhChart, StzhCheckbox, StzhCheckboxgroup, StzhChip, StzhChipSelect, StzhClamp, StzhComponentsAngularModule, StzhContact, StzhContainer, StzhContent, StzhCspace, StzhCta, StzhDatalist, StzhDatalistItem, StzhDatamessagelist, StzhDatamessagelistItem, StzhDatatable, StzhDatepicker, StzhDetails, StzhDialog, StzhDisturber, StzhDropdown, StzhEditor, StzhEventinfo, StzhFieldset, StzhFigure, StzhFlyingfocus, StzhFooter, StzhGallery, StzhGhettobox, StzhHeader, StzhHeading, StzhHr, StzhHspace, StzhIcon, StzhIframe, StzhImagecomparison, StzhInput, StzhInvert, StzhLink, StzhList, StzhListItem, StzhLoader, StzhLoadingbar, StzhMenu, StzhMenuItem, StzhMessage, StzhMicrositeTeaserlist, StzhMonthyearpicker, StzhOlmap, StzhOverlay, StzhPageSkiplinks, StzhPagebottom, StzhPagecontent, StzhPagetitle, StzhPagetitleHero, StzhPagination, StzhPanorama, StzhPopover, StzhPrint, StzhProgressbar, StzhProgressbarItem, StzhRadio, StzhRadiogroup, StzhRatio, StzhReadspeaker, StzhRichtext, StzhRow, StzhSaptcha, StzhScrollup, StzhSearch, StzhSection, StzhShare, StzhShow, StzhSitemap, StzhSkinPortalMitwirken, StzhSkinStorybookPreview, StzhSkiplink, StzhSortable, StzhSpace, StzhStatus, StzhSticky, StzhStickyActions, StzhTable, StzhText, StzhTextandimage, StzhTimeline, StzhTimelineItem, StzhTimepicker, StzhToast, StzhToastbar, StzhToggle, StzhTooltip, StzhTwocolumns, StzhUpload, StzhVbzCarousel, StzhVbzLinechip, StzhVbzMajorticker, StzhVbzTicker, StzhVisuallyhidden, StzhVspace, StzhYoutube, TextValueAccessor };
|
|
3402
|
+
//# sourceMappingURL=oiz-stzh-components-angular.mjs.map
|