@swisspost/design-system-components-angular 9.0.0-next.0 → 9.0.0-next.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components.module.mjs +6 -6
- package/esm2022/lib/custom/value-accessors/post-card-control-checkbox-value-accessor.mjs +4 -4
- package/esm2022/lib/custom/value-accessors/post-card-control-radio-value-accessor.mjs +4 -4
- package/esm2022/lib/stencil-generated/components.mjs +506 -58
- package/esm2022/lib/stencil-generated/index.mjs +20 -2
- package/fesm2022/swisspost-design-system-components-angular.mjs +517 -69
- package/fesm2022/swisspost-design-system-components-angular.mjs.map +1 -1
- package/lib/components.module.d.ts +1 -1
- package/lib/stencil-generated/components.d.ts +188 -8
- package/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +3 -3
|
@@ -69,8 +69,8 @@ let PostAccordion = class PostAccordion {
|
|
|
69
69
|
c.detach();
|
|
70
70
|
this.el = r.nativeElement;
|
|
71
71
|
}
|
|
72
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
73
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
72
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
73
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostAccordion, selector: "post-accordion", inputs: { headingLevel: "headingLevel", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
74
74
|
};
|
|
75
75
|
PostAccordion = __decorate([
|
|
76
76
|
ProxyCmp({
|
|
@@ -78,7 +78,7 @@ PostAccordion = __decorate([
|
|
|
78
78
|
methods: ['toggle', 'expandAll', 'collapseAll']
|
|
79
79
|
})
|
|
80
80
|
], PostAccordion);
|
|
81
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostAccordion, decorators: [{
|
|
82
82
|
type: Component,
|
|
83
83
|
args: [{
|
|
84
84
|
selector: 'post-accordion',
|
|
@@ -94,8 +94,8 @@ let PostAccordionItem = class PostAccordionItem {
|
|
|
94
94
|
c.detach();
|
|
95
95
|
this.el = r.nativeElement;
|
|
96
96
|
}
|
|
97
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
98
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
97
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
98
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostAccordionItem, selector: "post-accordion-item", inputs: { collapsed: "collapsed", headingLevel: "headingLevel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
99
99
|
};
|
|
100
100
|
PostAccordionItem = __decorate([
|
|
101
101
|
ProxyCmp({
|
|
@@ -103,7 +103,7 @@ PostAccordionItem = __decorate([
|
|
|
103
103
|
methods: ['toggle']
|
|
104
104
|
})
|
|
105
105
|
], PostAccordionItem);
|
|
106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostAccordionItem, decorators: [{
|
|
107
107
|
type: Component,
|
|
108
108
|
args: [{
|
|
109
109
|
selector: 'post-accordion-item',
|
|
@@ -113,30 +113,126 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
113
113
|
inputs: ['collapsed', 'headingLevel'],
|
|
114
114
|
}]
|
|
115
115
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
116
|
-
let
|
|
116
|
+
let PostAvatar = class PostAvatar {
|
|
117
|
+
constructor(c, r, z) {
|
|
118
|
+
this.z = z;
|
|
119
|
+
c.detach();
|
|
120
|
+
this.el = r.nativeElement;
|
|
121
|
+
}
|
|
122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
123
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostAvatar, selector: "post-avatar", inputs: { email: "email", firstname: "firstname", lastname: "lastname", userid: "userid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
124
|
+
};
|
|
125
|
+
PostAvatar = __decorate([
|
|
126
|
+
ProxyCmp({
|
|
127
|
+
inputs: ['email', 'firstname', 'lastname', 'userid']
|
|
128
|
+
})
|
|
129
|
+
], PostAvatar);
|
|
130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostAvatar, decorators: [{
|
|
131
|
+
type: Component,
|
|
132
|
+
args: [{
|
|
133
|
+
selector: 'post-avatar',
|
|
134
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
135
|
+
template: '<ng-content></ng-content>',
|
|
136
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
137
|
+
inputs: ['email', 'firstname', 'lastname', 'userid'],
|
|
138
|
+
}]
|
|
139
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
140
|
+
let PostBackToTop = class PostBackToTop {
|
|
141
|
+
constructor(c, r, z) {
|
|
142
|
+
this.z = z;
|
|
143
|
+
c.detach();
|
|
144
|
+
this.el = r.nativeElement;
|
|
145
|
+
}
|
|
146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBackToTop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
147
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostBackToTop, selector: "post-back-to-top", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
148
|
+
};
|
|
149
|
+
PostBackToTop = __decorate([
|
|
150
|
+
ProxyCmp({
|
|
151
|
+
inputs: ['label']
|
|
152
|
+
})
|
|
153
|
+
], PostBackToTop);
|
|
154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBackToTop, decorators: [{
|
|
155
|
+
type: Component,
|
|
156
|
+
args: [{
|
|
157
|
+
selector: 'post-back-to-top',
|
|
158
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
159
|
+
template: '<ng-content></ng-content>',
|
|
160
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
161
|
+
inputs: ['label'],
|
|
162
|
+
}]
|
|
163
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
164
|
+
let PostBanner = class PostBanner {
|
|
117
165
|
constructor(c, r, z) {
|
|
118
166
|
this.z = z;
|
|
119
167
|
c.detach();
|
|
120
168
|
this.el = r.nativeElement;
|
|
121
169
|
proxyOutputs(this, this.el, ['postDismissed']);
|
|
122
170
|
}
|
|
123
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
124
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
171
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
172
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostBanner, selector: "post-banner", inputs: { dismissLabel: "dismissLabel", dismissible: "dismissible", icon: "icon", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
125
173
|
};
|
|
126
|
-
|
|
174
|
+
PostBanner = __decorate([
|
|
127
175
|
ProxyCmp({
|
|
128
|
-
inputs: ['dismissLabel', 'dismissible', '
|
|
176
|
+
inputs: ['dismissLabel', 'dismissible', 'icon', 'type'],
|
|
129
177
|
methods: ['dismiss']
|
|
130
178
|
})
|
|
131
|
-
],
|
|
132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
179
|
+
], PostBanner);
|
|
180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBanner, decorators: [{
|
|
133
181
|
type: Component,
|
|
134
182
|
args: [{
|
|
135
|
-
selector: 'post-
|
|
183
|
+
selector: 'post-banner',
|
|
136
184
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
137
185
|
template: '<ng-content></ng-content>',
|
|
138
186
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
139
|
-
inputs: ['dismissLabel', 'dismissible', '
|
|
187
|
+
inputs: ['dismissLabel', 'dismissible', 'icon', 'type'],
|
|
188
|
+
}]
|
|
189
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
190
|
+
let PostBreadcrumb = class PostBreadcrumb {
|
|
191
|
+
constructor(c, r, z) {
|
|
192
|
+
this.z = z;
|
|
193
|
+
c.detach();
|
|
194
|
+
this.el = r.nativeElement;
|
|
195
|
+
}
|
|
196
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
197
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostBreadcrumb, selector: "post-breadcrumb", inputs: { homeText: "homeText", homeUrl: "homeUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
198
|
+
};
|
|
199
|
+
PostBreadcrumb = __decorate([
|
|
200
|
+
ProxyCmp({
|
|
201
|
+
inputs: ['homeText', 'homeUrl']
|
|
202
|
+
})
|
|
203
|
+
], PostBreadcrumb);
|
|
204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBreadcrumb, decorators: [{
|
|
205
|
+
type: Component,
|
|
206
|
+
args: [{
|
|
207
|
+
selector: 'post-breadcrumb',
|
|
208
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
209
|
+
template: '<ng-content></ng-content>',
|
|
210
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
211
|
+
inputs: ['homeText', 'homeUrl'],
|
|
212
|
+
}]
|
|
213
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
214
|
+
let PostBreadcrumbItem = class PostBreadcrumbItem {
|
|
215
|
+
constructor(c, r, z) {
|
|
216
|
+
this.z = z;
|
|
217
|
+
c.detach();
|
|
218
|
+
this.el = r.nativeElement;
|
|
219
|
+
}
|
|
220
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
221
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostBreadcrumbItem, selector: "post-breadcrumb-item", inputs: { url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
222
|
+
};
|
|
223
|
+
PostBreadcrumbItem = __decorate([
|
|
224
|
+
ProxyCmp({
|
|
225
|
+
inputs: ['url']
|
|
226
|
+
})
|
|
227
|
+
], PostBreadcrumbItem);
|
|
228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostBreadcrumbItem, decorators: [{
|
|
229
|
+
type: Component,
|
|
230
|
+
args: [{
|
|
231
|
+
selector: 'post-breadcrumb-item',
|
|
232
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
233
|
+
template: '<ng-content></ng-content>',
|
|
234
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
235
|
+
inputs: ['url'],
|
|
140
236
|
}]
|
|
141
237
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
142
238
|
let PostCardControl = class PostCardControl {
|
|
@@ -146,8 +242,8 @@ let PostCardControl = class PostCardControl {
|
|
|
146
242
|
this.el = r.nativeElement;
|
|
147
243
|
proxyOutputs(this, this.el, ['postInput', 'postChange']);
|
|
148
244
|
}
|
|
149
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
150
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
245
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControl, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
246
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostCardControl, selector: "post-card-control", inputs: { checked: "checked", description: "description", disabled: "disabled", icon: "icon", label: "label", name: "name", type: "type", validity: "validity", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
151
247
|
};
|
|
152
248
|
PostCardControl = __decorate([
|
|
153
249
|
ProxyCmp({
|
|
@@ -155,7 +251,7 @@ PostCardControl = __decorate([
|
|
|
155
251
|
methods: ['reset', 'groupReset']
|
|
156
252
|
})
|
|
157
253
|
], PostCardControl);
|
|
158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControl, decorators: [{
|
|
159
255
|
type: Component,
|
|
160
256
|
args: [{
|
|
161
257
|
selector: 'post-card-control',
|
|
@@ -165,6 +261,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
165
261
|
inputs: ['checked', 'description', 'disabled', 'icon', 'label', 'name', 'type', 'validity', 'value'],
|
|
166
262
|
}]
|
|
167
263
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
264
|
+
let PostClosebutton = class PostClosebutton {
|
|
265
|
+
constructor(c, r, z) {
|
|
266
|
+
this.z = z;
|
|
267
|
+
c.detach();
|
|
268
|
+
this.el = r.nativeElement;
|
|
269
|
+
}
|
|
270
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostClosebutton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
271
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostClosebutton, selector: "post-closebutton", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
272
|
+
};
|
|
273
|
+
PostClosebutton = __decorate([
|
|
274
|
+
ProxyCmp({})
|
|
275
|
+
], PostClosebutton);
|
|
276
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostClosebutton, decorators: [{
|
|
277
|
+
type: Component,
|
|
278
|
+
args: [{
|
|
279
|
+
selector: 'post-closebutton',
|
|
280
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
281
|
+
template: '<ng-content></ng-content>',
|
|
282
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
283
|
+
inputs: [],
|
|
284
|
+
}]
|
|
285
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
168
286
|
let PostCollapsible = class PostCollapsible {
|
|
169
287
|
constructor(c, r, z) {
|
|
170
288
|
this.z = z;
|
|
@@ -172,8 +290,8 @@ let PostCollapsible = class PostCollapsible {
|
|
|
172
290
|
this.el = r.nativeElement;
|
|
173
291
|
proxyOutputs(this, this.el, ['postToggle']);
|
|
174
292
|
}
|
|
175
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
176
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
293
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCollapsible, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
294
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostCollapsible, selector: "post-collapsible", inputs: { collapsed: "collapsed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
177
295
|
};
|
|
178
296
|
PostCollapsible = __decorate([
|
|
179
297
|
ProxyCmp({
|
|
@@ -181,7 +299,7 @@ PostCollapsible = __decorate([
|
|
|
181
299
|
methods: ['toggle']
|
|
182
300
|
})
|
|
183
301
|
], PostCollapsible);
|
|
184
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCollapsible, decorators: [{
|
|
185
303
|
type: Component,
|
|
186
304
|
args: [{
|
|
187
305
|
selector: 'post-collapsible',
|
|
@@ -197,8 +315,8 @@ let PostCollapsibleTrigger = class PostCollapsibleTrigger {
|
|
|
197
315
|
c.detach();
|
|
198
316
|
this.el = r.nativeElement;
|
|
199
317
|
}
|
|
200
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
201
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
318
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCollapsibleTrigger, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
319
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostCollapsibleTrigger, selector: "post-collapsible-trigger", inputs: { for: "for" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
202
320
|
};
|
|
203
321
|
PostCollapsibleTrigger = __decorate([
|
|
204
322
|
ProxyCmp({
|
|
@@ -206,7 +324,7 @@ PostCollapsibleTrigger = __decorate([
|
|
|
206
324
|
methods: ['update']
|
|
207
325
|
})
|
|
208
326
|
], PostCollapsibleTrigger);
|
|
209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCollapsibleTrigger, decorators: [{
|
|
210
328
|
type: Component,
|
|
211
329
|
args: [{
|
|
212
330
|
selector: 'post-collapsible-trigger',
|
|
@@ -216,21 +334,69 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
216
334
|
inputs: ['for'],
|
|
217
335
|
}]
|
|
218
336
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
337
|
+
let PostFooter = class PostFooter {
|
|
338
|
+
constructor(c, r, z) {
|
|
339
|
+
this.z = z;
|
|
340
|
+
c.detach();
|
|
341
|
+
this.el = r.nativeElement;
|
|
342
|
+
}
|
|
343
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
344
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostFooter, selector: "post-footer", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
345
|
+
};
|
|
346
|
+
PostFooter = __decorate([
|
|
347
|
+
ProxyCmp({
|
|
348
|
+
inputs: ['label']
|
|
349
|
+
})
|
|
350
|
+
], PostFooter);
|
|
351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostFooter, decorators: [{
|
|
352
|
+
type: Component,
|
|
353
|
+
args: [{
|
|
354
|
+
selector: 'post-footer',
|
|
355
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
356
|
+
template: '<ng-content></ng-content>',
|
|
357
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
358
|
+
inputs: ['label'],
|
|
359
|
+
}]
|
|
360
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
361
|
+
let PostHeader = class PostHeader {
|
|
362
|
+
constructor(c, r, z) {
|
|
363
|
+
this.z = z;
|
|
364
|
+
c.detach();
|
|
365
|
+
this.el = r.nativeElement;
|
|
366
|
+
}
|
|
367
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
368
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostHeader, selector: "post-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
369
|
+
};
|
|
370
|
+
PostHeader = __decorate([
|
|
371
|
+
ProxyCmp({
|
|
372
|
+
methods: ['toggleMobileMenu']
|
|
373
|
+
})
|
|
374
|
+
], PostHeader);
|
|
375
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostHeader, decorators: [{
|
|
376
|
+
type: Component,
|
|
377
|
+
args: [{
|
|
378
|
+
selector: 'post-header',
|
|
379
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
380
|
+
template: '<ng-content></ng-content>',
|
|
381
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
382
|
+
inputs: [],
|
|
383
|
+
}]
|
|
384
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
219
385
|
let PostIcon = class PostIcon {
|
|
220
386
|
constructor(c, r, z) {
|
|
221
387
|
this.z = z;
|
|
222
388
|
c.detach();
|
|
223
389
|
this.el = r.nativeElement;
|
|
224
390
|
}
|
|
225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
226
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
392
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostIcon, selector: "post-icon", inputs: { animation: "animation", base: "base", flipH: "flipH", flipV: "flipV", name: "name", rotate: "rotate", scale: "scale" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
227
393
|
};
|
|
228
394
|
PostIcon = __decorate([
|
|
229
395
|
ProxyCmp({
|
|
230
396
|
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale']
|
|
231
397
|
})
|
|
232
398
|
], PostIcon);
|
|
233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostIcon, decorators: [{
|
|
234
400
|
type: Component,
|
|
235
401
|
args: [{
|
|
236
402
|
selector: 'post-icon',
|
|
@@ -240,21 +406,117 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
240
406
|
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale'],
|
|
241
407
|
}]
|
|
242
408
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
409
|
+
let PostLanguageOption = class PostLanguageOption {
|
|
410
|
+
constructor(c, r, z) {
|
|
411
|
+
this.z = z;
|
|
412
|
+
c.detach();
|
|
413
|
+
this.el = r.nativeElement;
|
|
414
|
+
proxyOutputs(this, this.el, ['postChange']);
|
|
415
|
+
}
|
|
416
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLanguageOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
417
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostLanguageOption, selector: "post-language-option", inputs: { active: "active", code: "code", name: "name", url: "url", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
418
|
+
};
|
|
419
|
+
PostLanguageOption = __decorate([
|
|
420
|
+
ProxyCmp({
|
|
421
|
+
inputs: ['active', 'code', 'name', 'url', 'variant'],
|
|
422
|
+
methods: ['select']
|
|
423
|
+
})
|
|
424
|
+
], PostLanguageOption);
|
|
425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLanguageOption, decorators: [{
|
|
426
|
+
type: Component,
|
|
427
|
+
args: [{
|
|
428
|
+
selector: 'post-language-option',
|
|
429
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
430
|
+
template: '<ng-content></ng-content>',
|
|
431
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
432
|
+
inputs: ['active', 'code', 'name', 'url', 'variant'],
|
|
433
|
+
}]
|
|
434
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
435
|
+
let PostLanguageSwitch = class PostLanguageSwitch {
|
|
436
|
+
constructor(c, r, z) {
|
|
437
|
+
this.z = z;
|
|
438
|
+
c.detach();
|
|
439
|
+
this.el = r.nativeElement;
|
|
440
|
+
}
|
|
441
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLanguageSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
442
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostLanguageSwitch, selector: "post-language-switch", inputs: { caption: "caption", description: "description", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
443
|
+
};
|
|
444
|
+
PostLanguageSwitch = __decorate([
|
|
445
|
+
ProxyCmp({
|
|
446
|
+
inputs: ['caption', 'description', 'variant']
|
|
447
|
+
})
|
|
448
|
+
], PostLanguageSwitch);
|
|
449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLanguageSwitch, decorators: [{
|
|
450
|
+
type: Component,
|
|
451
|
+
args: [{
|
|
452
|
+
selector: 'post-language-switch',
|
|
453
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
454
|
+
template: '<ng-content></ng-content>',
|
|
455
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
456
|
+
inputs: ['caption', 'description', 'variant'],
|
|
457
|
+
}]
|
|
458
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
459
|
+
let PostList = class PostList {
|
|
460
|
+
constructor(c, r, z) {
|
|
461
|
+
this.z = z;
|
|
462
|
+
c.detach();
|
|
463
|
+
this.el = r.nativeElement;
|
|
464
|
+
}
|
|
465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
466
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostList, selector: "post-list", inputs: { horizontal: "horizontal", titleHidden: "titleHidden" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
467
|
+
};
|
|
468
|
+
PostList = __decorate([
|
|
469
|
+
ProxyCmp({
|
|
470
|
+
inputs: ['horizontal', 'titleHidden']
|
|
471
|
+
})
|
|
472
|
+
], PostList);
|
|
473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostList, decorators: [{
|
|
474
|
+
type: Component,
|
|
475
|
+
args: [{
|
|
476
|
+
selector: 'post-list',
|
|
477
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
478
|
+
template: '<ng-content></ng-content>',
|
|
479
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
480
|
+
inputs: ['horizontal', 'titleHidden'],
|
|
481
|
+
}]
|
|
482
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
483
|
+
let PostListItem = class PostListItem {
|
|
484
|
+
constructor(c, r, z) {
|
|
485
|
+
this.z = z;
|
|
486
|
+
c.detach();
|
|
487
|
+
this.el = r.nativeElement;
|
|
488
|
+
}
|
|
489
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
490
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostListItem, selector: "post-list-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
491
|
+
};
|
|
492
|
+
PostListItem = __decorate([
|
|
493
|
+
ProxyCmp({})
|
|
494
|
+
], PostListItem);
|
|
495
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostListItem, decorators: [{
|
|
496
|
+
type: Component,
|
|
497
|
+
args: [{
|
|
498
|
+
selector: 'post-list-item',
|
|
499
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
500
|
+
template: '<ng-content></ng-content>',
|
|
501
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
502
|
+
inputs: [],
|
|
503
|
+
}]
|
|
504
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
243
505
|
let PostLogo = class PostLogo {
|
|
244
506
|
constructor(c, r, z) {
|
|
245
507
|
this.z = z;
|
|
246
508
|
c.detach();
|
|
247
509
|
this.el = r.nativeElement;
|
|
248
510
|
}
|
|
249
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
250
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
511
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
512
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostLogo, selector: "post-logo", inputs: { url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
251
513
|
};
|
|
252
514
|
PostLogo = __decorate([
|
|
253
515
|
ProxyCmp({
|
|
254
516
|
inputs: ['url']
|
|
255
517
|
})
|
|
256
518
|
], PostLogo);
|
|
257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLogo, decorators: [{
|
|
258
520
|
type: Component,
|
|
259
521
|
args: [{
|
|
260
522
|
selector: 'post-logo',
|
|
@@ -264,14 +526,158 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
264
526
|
inputs: ['url'],
|
|
265
527
|
}]
|
|
266
528
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
529
|
+
let PostMainnavigation = class PostMainnavigation {
|
|
530
|
+
constructor(c, r, z) {
|
|
531
|
+
this.z = z;
|
|
532
|
+
c.detach();
|
|
533
|
+
this.el = r.nativeElement;
|
|
534
|
+
proxyOutputs(this, this.el, ['postToggle']);
|
|
535
|
+
}
|
|
536
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMainnavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
537
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostMainnavigation, selector: "post-mainnavigation", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
538
|
+
};
|
|
539
|
+
PostMainnavigation = __decorate([
|
|
540
|
+
ProxyCmp({})
|
|
541
|
+
], PostMainnavigation);
|
|
542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMainnavigation, decorators: [{
|
|
543
|
+
type: Component,
|
|
544
|
+
args: [{
|
|
545
|
+
selector: 'post-mainnavigation',
|
|
546
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
547
|
+
template: '<ng-content></ng-content>',
|
|
548
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
549
|
+
inputs: [],
|
|
550
|
+
}]
|
|
551
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
552
|
+
let PostMegadropdown = class PostMegadropdown {
|
|
553
|
+
constructor(c, r, z) {
|
|
554
|
+
this.z = z;
|
|
555
|
+
c.detach();
|
|
556
|
+
this.el = r.nativeElement;
|
|
557
|
+
proxyOutputs(this, this.el, ['postToggleMegadropdown']);
|
|
558
|
+
}
|
|
559
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMegadropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
560
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostMegadropdown, selector: "post-megadropdown", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
561
|
+
};
|
|
562
|
+
PostMegadropdown = __decorate([
|
|
563
|
+
ProxyCmp({
|
|
564
|
+
methods: ['toggle', 'show']
|
|
565
|
+
})
|
|
566
|
+
], PostMegadropdown);
|
|
567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMegadropdown, decorators: [{
|
|
568
|
+
type: Component,
|
|
569
|
+
args: [{
|
|
570
|
+
selector: 'post-megadropdown',
|
|
571
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
572
|
+
template: '<ng-content></ng-content>',
|
|
573
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
574
|
+
inputs: [],
|
|
575
|
+
}]
|
|
576
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
577
|
+
let PostMegadropdownTrigger = class PostMegadropdownTrigger {
|
|
578
|
+
constructor(c, r, z) {
|
|
579
|
+
this.z = z;
|
|
580
|
+
c.detach();
|
|
581
|
+
this.el = r.nativeElement;
|
|
582
|
+
}
|
|
583
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMegadropdownTrigger, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
584
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostMegadropdownTrigger, selector: "post-megadropdown-trigger", inputs: { for: "for" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
585
|
+
};
|
|
586
|
+
PostMegadropdownTrigger = __decorate([
|
|
587
|
+
ProxyCmp({
|
|
588
|
+
inputs: ['for']
|
|
589
|
+
})
|
|
590
|
+
], PostMegadropdownTrigger);
|
|
591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMegadropdownTrigger, decorators: [{
|
|
592
|
+
type: Component,
|
|
593
|
+
args: [{
|
|
594
|
+
selector: 'post-megadropdown-trigger',
|
|
595
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
596
|
+
template: '<ng-content></ng-content>',
|
|
597
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
598
|
+
inputs: ['for'],
|
|
599
|
+
}]
|
|
600
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
601
|
+
let PostMenu = class PostMenu {
|
|
602
|
+
constructor(c, r, z) {
|
|
603
|
+
this.z = z;
|
|
604
|
+
c.detach();
|
|
605
|
+
this.el = r.nativeElement;
|
|
606
|
+
proxyOutputs(this, this.el, ['toggleMenu']);
|
|
607
|
+
}
|
|
608
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
609
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostMenu, selector: "post-menu", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
610
|
+
};
|
|
611
|
+
PostMenu = __decorate([
|
|
612
|
+
ProxyCmp({
|
|
613
|
+
inputs: ['placement'],
|
|
614
|
+
methods: ['toggle', 'show', 'hide']
|
|
615
|
+
})
|
|
616
|
+
], PostMenu);
|
|
617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenu, decorators: [{
|
|
618
|
+
type: Component,
|
|
619
|
+
args: [{
|
|
620
|
+
selector: 'post-menu',
|
|
621
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
622
|
+
template: '<ng-content></ng-content>',
|
|
623
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
624
|
+
inputs: ['placement'],
|
|
625
|
+
}]
|
|
626
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
627
|
+
let PostMenuItem = class PostMenuItem {
|
|
628
|
+
constructor(c, r, z) {
|
|
629
|
+
this.z = z;
|
|
630
|
+
c.detach();
|
|
631
|
+
this.el = r.nativeElement;
|
|
632
|
+
}
|
|
633
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
634
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostMenuItem, selector: "post-menu-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
635
|
+
};
|
|
636
|
+
PostMenuItem = __decorate([
|
|
637
|
+
ProxyCmp({})
|
|
638
|
+
], PostMenuItem);
|
|
639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenuItem, decorators: [{
|
|
640
|
+
type: Component,
|
|
641
|
+
args: [{
|
|
642
|
+
selector: 'post-menu-item',
|
|
643
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
644
|
+
template: '<ng-content></ng-content>',
|
|
645
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
646
|
+
inputs: [],
|
|
647
|
+
}]
|
|
648
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
649
|
+
let PostMenuTrigger = class PostMenuTrigger {
|
|
650
|
+
constructor(c, r, z) {
|
|
651
|
+
this.z = z;
|
|
652
|
+
c.detach();
|
|
653
|
+
this.el = r.nativeElement;
|
|
654
|
+
}
|
|
655
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenuTrigger, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
656
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostMenuTrigger, selector: "post-menu-trigger", inputs: { for: "for" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
657
|
+
};
|
|
658
|
+
PostMenuTrigger = __decorate([
|
|
659
|
+
ProxyCmp({
|
|
660
|
+
inputs: ['for']
|
|
661
|
+
})
|
|
662
|
+
], PostMenuTrigger);
|
|
663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenuTrigger, decorators: [{
|
|
664
|
+
type: Component,
|
|
665
|
+
args: [{
|
|
666
|
+
selector: 'post-menu-trigger',
|
|
667
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
668
|
+
template: '<ng-content></ng-content>',
|
|
669
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
670
|
+
inputs: ['for'],
|
|
671
|
+
}]
|
|
672
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
267
673
|
let PostPopover = class PostPopover {
|
|
268
674
|
constructor(c, r, z) {
|
|
269
675
|
this.z = z;
|
|
270
676
|
c.detach();
|
|
271
677
|
this.el = r.nativeElement;
|
|
272
678
|
}
|
|
273
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
274
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
680
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostPopover, selector: "post-popover", inputs: { arrow: "arrow", closeButtonCaption: "closeButtonCaption", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
275
681
|
};
|
|
276
682
|
PostPopover = __decorate([
|
|
277
683
|
ProxyCmp({
|
|
@@ -279,7 +685,7 @@ PostPopover = __decorate([
|
|
|
279
685
|
methods: ['show', 'hide', 'toggle']
|
|
280
686
|
})
|
|
281
687
|
], PostPopover);
|
|
282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
688
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostPopover, decorators: [{
|
|
283
689
|
type: Component,
|
|
284
690
|
args: [{
|
|
285
691
|
selector: 'post-popover',
|
|
@@ -296,23 +702,23 @@ let PostPopovercontainer = class PostPopovercontainer {
|
|
|
296
702
|
this.el = r.nativeElement;
|
|
297
703
|
proxyOutputs(this, this.el, ['postToggle']);
|
|
298
704
|
}
|
|
299
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
300
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
705
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostPopovercontainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
706
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostPopovercontainer, selector: "post-popovercontainer", inputs: { arrow: "arrow", edgeGap: "edgeGap", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
301
707
|
};
|
|
302
708
|
PostPopovercontainer = __decorate([
|
|
303
709
|
ProxyCmp({
|
|
304
|
-
inputs: ['arrow', 'placement'],
|
|
710
|
+
inputs: ['arrow', 'edgeGap', 'placement'],
|
|
305
711
|
methods: ['show', 'hide', 'toggle']
|
|
306
712
|
})
|
|
307
713
|
], PostPopovercontainer);
|
|
308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostPopovercontainer, decorators: [{
|
|
309
715
|
type: Component,
|
|
310
716
|
args: [{
|
|
311
717
|
selector: 'post-popovercontainer',
|
|
312
718
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
313
719
|
template: '<ng-content></ng-content>',
|
|
314
720
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
315
|
-
inputs: ['arrow', 'placement'],
|
|
721
|
+
inputs: ['arrow', 'edgeGap', 'placement'],
|
|
316
722
|
}]
|
|
317
723
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
318
724
|
let PostRating = class PostRating {
|
|
@@ -322,15 +728,15 @@ let PostRating = class PostRating {
|
|
|
322
728
|
this.el = r.nativeElement;
|
|
323
729
|
proxyOutputs(this, this.el, ['postInput', 'postChange']);
|
|
324
730
|
}
|
|
325
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
326
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
731
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
732
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostRating, selector: "post-rating", inputs: { currentRating: "currentRating", label: "label", readonly: "readonly", stars: "stars" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
327
733
|
};
|
|
328
734
|
PostRating = __decorate([
|
|
329
735
|
ProxyCmp({
|
|
330
736
|
inputs: ['currentRating', 'label', 'readonly', 'stars']
|
|
331
737
|
})
|
|
332
738
|
], PostRating);
|
|
333
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostRating, decorators: [{
|
|
334
740
|
type: Component,
|
|
335
741
|
args: [{
|
|
336
742
|
selector: 'post-rating',
|
|
@@ -346,15 +752,15 @@ let PostTabHeader = class PostTabHeader {
|
|
|
346
752
|
c.detach();
|
|
347
753
|
this.el = r.nativeElement;
|
|
348
754
|
}
|
|
349
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
350
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
755
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
756
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostTabHeader, selector: "post-tab-header", inputs: { panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
351
757
|
};
|
|
352
758
|
PostTabHeader = __decorate([
|
|
353
759
|
ProxyCmp({
|
|
354
760
|
inputs: ['panel']
|
|
355
761
|
})
|
|
356
762
|
], PostTabHeader);
|
|
357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabHeader, decorators: [{
|
|
358
764
|
type: Component,
|
|
359
765
|
args: [{
|
|
360
766
|
selector: 'post-tab-header',
|
|
@@ -370,15 +776,15 @@ let PostTabPanel = class PostTabPanel {
|
|
|
370
776
|
c.detach();
|
|
371
777
|
this.el = r.nativeElement;
|
|
372
778
|
}
|
|
373
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
374
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
779
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
780
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostTabPanel, selector: "post-tab-panel", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
375
781
|
};
|
|
376
782
|
PostTabPanel = __decorate([
|
|
377
783
|
ProxyCmp({
|
|
378
784
|
inputs: ['name']
|
|
379
785
|
})
|
|
380
786
|
], PostTabPanel);
|
|
381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabPanel, decorators: [{
|
|
382
788
|
type: Component,
|
|
383
789
|
args: [{
|
|
384
790
|
selector: 'post-tab-panel',
|
|
@@ -395,8 +801,8 @@ let PostTabs = class PostTabs {
|
|
|
395
801
|
this.el = r.nativeElement;
|
|
396
802
|
proxyOutputs(this, this.el, ['postChange']);
|
|
397
803
|
}
|
|
398
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
399
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
804
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
805
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostTabs, selector: "post-tabs", inputs: { activePanel: "activePanel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
400
806
|
};
|
|
401
807
|
PostTabs = __decorate([
|
|
402
808
|
ProxyCmp({
|
|
@@ -404,7 +810,7 @@ PostTabs = __decorate([
|
|
|
404
810
|
methods: ['show']
|
|
405
811
|
})
|
|
406
812
|
], PostTabs);
|
|
407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
813
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabs, decorators: [{
|
|
408
814
|
type: Component,
|
|
409
815
|
args: [{
|
|
410
816
|
selector: 'post-tabs',
|
|
@@ -420,15 +826,15 @@ let PostTag = class PostTag {
|
|
|
420
826
|
c.detach();
|
|
421
827
|
this.el = r.nativeElement;
|
|
422
828
|
}
|
|
423
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
424
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
829
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
830
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostTag, selector: "post-tag", inputs: { icon: "icon", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
425
831
|
};
|
|
426
832
|
PostTag = __decorate([
|
|
427
833
|
ProxyCmp({
|
|
428
834
|
inputs: ['icon', 'size', 'variant']
|
|
429
835
|
})
|
|
430
836
|
], PostTag);
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTag, decorators: [{
|
|
432
838
|
type: Component,
|
|
433
839
|
args: [{
|
|
434
840
|
selector: 'post-tag',
|
|
@@ -438,14 +844,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
438
844
|
inputs: ['icon', 'size', 'variant'],
|
|
439
845
|
}]
|
|
440
846
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
847
|
+
let PostTogglebutton = class PostTogglebutton {
|
|
848
|
+
constructor(c, r, z) {
|
|
849
|
+
this.z = z;
|
|
850
|
+
c.detach();
|
|
851
|
+
this.el = r.nativeElement;
|
|
852
|
+
}
|
|
853
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTogglebutton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
854
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostTogglebutton, selector: "post-togglebutton", inputs: { toggled: "toggled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
855
|
+
};
|
|
856
|
+
PostTogglebutton = __decorate([
|
|
857
|
+
ProxyCmp({
|
|
858
|
+
inputs: ['toggled']
|
|
859
|
+
})
|
|
860
|
+
], PostTogglebutton);
|
|
861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTogglebutton, decorators: [{
|
|
862
|
+
type: Component,
|
|
863
|
+
args: [{
|
|
864
|
+
selector: 'post-togglebutton',
|
|
865
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
866
|
+
template: '<ng-content></ng-content>',
|
|
867
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
868
|
+
inputs: ['toggled'],
|
|
869
|
+
}]
|
|
870
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
441
871
|
let PostTooltip = class PostTooltip {
|
|
442
872
|
constructor(c, r, z) {
|
|
443
873
|
this.z = z;
|
|
444
874
|
c.detach();
|
|
445
875
|
this.el = r.nativeElement;
|
|
446
876
|
}
|
|
447
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
448
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
877
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
878
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostTooltip, selector: "post-tooltip", inputs: { arrow: "arrow", delayed: "delayed", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
449
879
|
};
|
|
450
880
|
PostTooltip = __decorate([
|
|
451
881
|
ProxyCmp({
|
|
@@ -453,7 +883,7 @@ PostTooltip = __decorate([
|
|
|
453
883
|
methods: ['show', 'hide', 'toggle']
|
|
454
884
|
})
|
|
455
885
|
], PostTooltip);
|
|
456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTooltip, decorators: [{
|
|
457
887
|
type: Component,
|
|
458
888
|
args: [{
|
|
459
889
|
selector: 'post-tooltip',
|
|
@@ -467,12 +897,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
467
897
|
const DIRECTIVES = [
|
|
468
898
|
PostAccordion,
|
|
469
899
|
PostAccordionItem,
|
|
470
|
-
|
|
900
|
+
PostAvatar,
|
|
901
|
+
PostBackToTop,
|
|
902
|
+
PostBanner,
|
|
903
|
+
PostBreadcrumb,
|
|
904
|
+
PostBreadcrumbItem,
|
|
471
905
|
PostCardControl,
|
|
906
|
+
PostClosebutton,
|
|
472
907
|
PostCollapsible,
|
|
473
908
|
PostCollapsibleTrigger,
|
|
909
|
+
PostFooter,
|
|
910
|
+
PostHeader,
|
|
474
911
|
PostIcon,
|
|
912
|
+
PostLanguageOption,
|
|
913
|
+
PostLanguageSwitch,
|
|
914
|
+
PostList,
|
|
915
|
+
PostListItem,
|
|
475
916
|
PostLogo,
|
|
917
|
+
PostMainnavigation,
|
|
918
|
+
PostMegadropdown,
|
|
919
|
+
PostMegadropdownTrigger,
|
|
920
|
+
PostMenu,
|
|
921
|
+
PostMenuItem,
|
|
922
|
+
PostMenuTrigger,
|
|
476
923
|
PostPopover,
|
|
477
924
|
PostPopovercontainer,
|
|
478
925
|
PostRating,
|
|
@@ -480,6 +927,7 @@ const DIRECTIVES = [
|
|
|
480
927
|
PostTabPanel,
|
|
481
928
|
PostTabs,
|
|
482
929
|
PostTag,
|
|
930
|
+
PostTogglebutton,
|
|
483
931
|
PostTooltip
|
|
484
932
|
];
|
|
485
933
|
|
|
@@ -511,8 +959,8 @@ class PostCardControlCheckboxValueAccessorDirective {
|
|
|
511
959
|
setDisabledState(isDisabled) {
|
|
512
960
|
this.el.nativeElement.disabled = isDisabled;
|
|
513
961
|
}
|
|
514
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
515
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.
|
|
962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControlCheckboxValueAccessorDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
963
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: PostCardControlCheckboxValueAccessorDirective, selector: "post-card-control[type=\"checkbox\"]", host: { listeners: { "postChange": "handleChangeEvent($event.detail.state)", "focusout": "_handleBlurEvent()" } }, providers: [
|
|
516
964
|
{
|
|
517
965
|
provide: NG_VALUE_ACCESSOR,
|
|
518
966
|
useExisting: PostCardControlCheckboxValueAccessorDirective,
|
|
@@ -520,7 +968,7 @@ class PostCardControlCheckboxValueAccessorDirective {
|
|
|
520
968
|
},
|
|
521
969
|
], ngImport: i0 }); }
|
|
522
970
|
}
|
|
523
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
971
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControlCheckboxValueAccessorDirective, decorators: [{
|
|
524
972
|
type: Directive,
|
|
525
973
|
args: [{
|
|
526
974
|
/* eslint-disable-next-line @angular-eslint/directive-selector */
|
|
@@ -570,8 +1018,8 @@ class PostCardControlRadioValueAccessorDirective {
|
|
|
570
1018
|
setDisabledState(isDisabled) {
|
|
571
1019
|
this.el.nativeElement.disabled = isDisabled;
|
|
572
1020
|
}
|
|
573
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
574
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.
|
|
1021
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControlRadioValueAccessorDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1022
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: PostCardControlRadioValueAccessorDirective, selector: "post-card-control[type=\"radio\"]", host: { listeners: { "postChange": "handleChangeEvent($event.detail.value)", "focusout": "_handleBlurEvent()" } }, providers: [
|
|
575
1023
|
{
|
|
576
1024
|
provide: NG_VALUE_ACCESSOR,
|
|
577
1025
|
useExisting: PostCardControlRadioValueAccessorDirective,
|
|
@@ -579,7 +1027,7 @@ class PostCardControlRadioValueAccessorDirective {
|
|
|
579
1027
|
},
|
|
580
1028
|
], ngImport: i0 }); }
|
|
581
1029
|
}
|
|
582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
1030
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControlRadioValueAccessorDirective, decorators: [{
|
|
583
1031
|
type: Directive,
|
|
584
1032
|
args: [{
|
|
585
1033
|
/* eslint-disable-next-line @angular-eslint/directive-selector */
|
|
@@ -606,11 +1054,11 @@ const DECLARATIONS = [
|
|
|
606
1054
|
PostCardControlRadioValueAccessorDirective,
|
|
607
1055
|
];
|
|
608
1056
|
class PostComponentsModule {
|
|
609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
610
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.
|
|
611
|
-
PostCardControlRadioValueAccessorDirective], exports: [PostAccordion, PostAccordionItem,
|
|
1057
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1058
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: PostComponentsModule, declarations: [PostAccordion, PostAccordionItem, PostAvatar, PostBackToTop, PostBanner, PostBreadcrumb, PostBreadcrumbItem, PostCardControl, PostClosebutton, PostCollapsible, PostCollapsibleTrigger, PostFooter, PostHeader, PostIcon, PostLanguageOption, PostLanguageSwitch, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopovercontainer, PostRating, PostTabHeader, PostTabPanel, PostTabs, PostTag, PostTogglebutton, PostTooltip, PostCardControlCheckboxValueAccessorDirective,
|
|
1059
|
+
PostCardControlRadioValueAccessorDirective], exports: [PostAccordion, PostAccordionItem, PostAvatar, PostBackToTop, PostBanner, PostBreadcrumb, PostBreadcrumbItem, PostCardControl, PostClosebutton, PostCollapsible, PostCollapsibleTrigger, PostFooter, PostHeader, PostIcon, PostLanguageOption, PostLanguageSwitch, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopovercontainer, PostRating, PostTabHeader, PostTabPanel, PostTabs, PostTag, PostTogglebutton, PostTooltip, PostCardControlCheckboxValueAccessorDirective,
|
|
612
1060
|
PostCardControlRadioValueAccessorDirective] }); }
|
|
613
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.
|
|
1061
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostComponentsModule, providers: [
|
|
614
1062
|
{
|
|
615
1063
|
// Use ENVIRONMENT_INITIALIZER to be compatible with lazy-loaded modules
|
|
616
1064
|
provide: ENVIRONMENT_INITIALIZER,
|
|
@@ -629,7 +1077,7 @@ class PostComponentsModule {
|
|
|
629
1077
|
},
|
|
630
1078
|
] }); }
|
|
631
1079
|
}
|
|
632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
1080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostComponentsModule, decorators: [{
|
|
633
1081
|
type: NgModule,
|
|
634
1082
|
args: [{
|
|
635
1083
|
declarations: DECLARATIONS,
|
|
@@ -663,5 +1111,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
663
1111
|
* Generated bundle index. Do not edit.
|
|
664
1112
|
*/
|
|
665
1113
|
|
|
666
|
-
export { DIRECTIVES, PostAccordion, PostAccordionItem,
|
|
1114
|
+
export { DIRECTIVES, PostAccordion, PostAccordionItem, PostAvatar, PostBackToTop, PostBanner, PostBreadcrumb, PostBreadcrumbItem, PostCardControl, PostCardControlCheckboxValueAccessorDirective, PostCardControlRadioValueAccessorDirective, PostClosebutton, PostCollapsible, PostCollapsibleTrigger, PostComponentsModule, PostFooter, PostHeader, PostIcon, PostLanguageOption, PostLanguageSwitch, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopovercontainer, PostRating, PostTabHeader, PostTabPanel, PostTabs, PostTag, PostTogglebutton, PostTooltip };
|
|
667
1115
|
//# sourceMappingURL=swisspost-design-system-components-angular.mjs.map
|