@swisspost/design-system-components-angular 9.0.0-next.2 → 9.0.0-next.22
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 +529 -58
- package/esm2022/lib/stencil-generated/index.mjs +21 -2
- package/fesm2022/swisspost-design-system-components-angular.mjs +540 -69
- package/fesm2022/swisspost-design-system-components-angular.mjs.map +1 -1
- package/lib/components.module.d.ts +1 -1
- package/lib/custom/value-accessors/post-card-control-checkbox-value-accessor.d.ts +4 -4
- package/lib/custom/value-accessors/post-card-control-radio-value-accessor.d.ts +4 -4
- package/lib/stencil-generated/components.d.ts +204 -9
- 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: [{
|
|
181
|
+
type: Component,
|
|
182
|
+
args: [{
|
|
183
|
+
selector: 'post-banner',
|
|
184
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
185
|
+
template: '<ng-content></ng-content>',
|
|
186
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
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: [{
|
|
133
205
|
type: Component,
|
|
134
206
|
args: [{
|
|
135
|
-
selector: 'post-
|
|
207
|
+
selector: 'post-breadcrumb',
|
|
136
208
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
137
209
|
template: '<ng-content></ng-content>',
|
|
138
210
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
139
|
-
inputs: ['
|
|
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,70 @@ 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
|
+
proxyOutputs(this, this.el, ['postUpdateDevice']);
|
|
367
|
+
}
|
|
368
|
+
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 }); }
|
|
369
|
+
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 }); }
|
|
370
|
+
};
|
|
371
|
+
PostHeader = __decorate([
|
|
372
|
+
ProxyCmp({
|
|
373
|
+
methods: ['toggleMobileMenu']
|
|
374
|
+
})
|
|
375
|
+
], PostHeader);
|
|
376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostHeader, decorators: [{
|
|
377
|
+
type: Component,
|
|
378
|
+
args: [{
|
|
379
|
+
selector: 'post-header',
|
|
380
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
381
|
+
template: '<ng-content></ng-content>',
|
|
382
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
383
|
+
inputs: [],
|
|
384
|
+
}]
|
|
385
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
219
386
|
let PostIcon = class PostIcon {
|
|
220
387
|
constructor(c, r, z) {
|
|
221
388
|
this.z = z;
|
|
222
389
|
c.detach();
|
|
223
390
|
this.el = r.nativeElement;
|
|
224
391
|
}
|
|
225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
226
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
392
|
+
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 }); }
|
|
393
|
+
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
394
|
};
|
|
228
395
|
PostIcon = __decorate([
|
|
229
396
|
ProxyCmp({
|
|
230
397
|
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale']
|
|
231
398
|
})
|
|
232
399
|
], PostIcon);
|
|
233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
400
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostIcon, decorators: [{
|
|
234
401
|
type: Component,
|
|
235
402
|
args: [{
|
|
236
403
|
selector: 'post-icon',
|
|
@@ -240,21 +407,139 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
240
407
|
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale'],
|
|
241
408
|
}]
|
|
242
409
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
410
|
+
let PostLanguageOption = class PostLanguageOption {
|
|
411
|
+
constructor(c, r, z) {
|
|
412
|
+
this.z = z;
|
|
413
|
+
c.detach();
|
|
414
|
+
this.el = r.nativeElement;
|
|
415
|
+
proxyOutputs(this, this.el, ['postChange']);
|
|
416
|
+
}
|
|
417
|
+
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 }); }
|
|
418
|
+
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 }); }
|
|
419
|
+
};
|
|
420
|
+
PostLanguageOption = __decorate([
|
|
421
|
+
ProxyCmp({
|
|
422
|
+
inputs: ['active', 'code', 'name', 'url', 'variant'],
|
|
423
|
+
methods: ['select']
|
|
424
|
+
})
|
|
425
|
+
], PostLanguageOption);
|
|
426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLanguageOption, decorators: [{
|
|
427
|
+
type: Component,
|
|
428
|
+
args: [{
|
|
429
|
+
selector: 'post-language-option',
|
|
430
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
431
|
+
template: '<ng-content></ng-content>',
|
|
432
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
433
|
+
inputs: ['active', 'code', 'name', 'url', 'variant'],
|
|
434
|
+
}]
|
|
435
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
436
|
+
let PostLanguageSwitch = class PostLanguageSwitch {
|
|
437
|
+
constructor(c, r, z) {
|
|
438
|
+
this.z = z;
|
|
439
|
+
c.detach();
|
|
440
|
+
this.el = r.nativeElement;
|
|
441
|
+
}
|
|
442
|
+
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 }); }
|
|
443
|
+
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 }); }
|
|
444
|
+
};
|
|
445
|
+
PostLanguageSwitch = __decorate([
|
|
446
|
+
ProxyCmp({
|
|
447
|
+
inputs: ['caption', 'description', 'variant']
|
|
448
|
+
})
|
|
449
|
+
], PostLanguageSwitch);
|
|
450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLanguageSwitch, decorators: [{
|
|
451
|
+
type: Component,
|
|
452
|
+
args: [{
|
|
453
|
+
selector: 'post-language-switch',
|
|
454
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
455
|
+
template: '<ng-content></ng-content>',
|
|
456
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
457
|
+
inputs: ['caption', 'description', 'variant'],
|
|
458
|
+
}]
|
|
459
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
460
|
+
let PostLinkarea = class PostLinkarea {
|
|
461
|
+
constructor(c, r, z) {
|
|
462
|
+
this.z = z;
|
|
463
|
+
c.detach();
|
|
464
|
+
this.el = r.nativeElement;
|
|
465
|
+
}
|
|
466
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLinkarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
467
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostLinkarea, selector: "post-linkarea", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
468
|
+
};
|
|
469
|
+
PostLinkarea = __decorate([
|
|
470
|
+
ProxyCmp({})
|
|
471
|
+
], PostLinkarea);
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLinkarea, decorators: [{
|
|
473
|
+
type: Component,
|
|
474
|
+
args: [{
|
|
475
|
+
selector: 'post-linkarea',
|
|
476
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
477
|
+
template: '<ng-content></ng-content>',
|
|
478
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
479
|
+
inputs: [],
|
|
480
|
+
}]
|
|
481
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
482
|
+
let PostList = class PostList {
|
|
483
|
+
constructor(c, r, z) {
|
|
484
|
+
this.z = z;
|
|
485
|
+
c.detach();
|
|
486
|
+
this.el = r.nativeElement;
|
|
487
|
+
}
|
|
488
|
+
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 }); }
|
|
489
|
+
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 }); }
|
|
490
|
+
};
|
|
491
|
+
PostList = __decorate([
|
|
492
|
+
ProxyCmp({
|
|
493
|
+
inputs: ['horizontal', 'titleHidden']
|
|
494
|
+
})
|
|
495
|
+
], PostList);
|
|
496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostList, decorators: [{
|
|
497
|
+
type: Component,
|
|
498
|
+
args: [{
|
|
499
|
+
selector: 'post-list',
|
|
500
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
501
|
+
template: '<ng-content></ng-content>',
|
|
502
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
503
|
+
inputs: ['horizontal', 'titleHidden'],
|
|
504
|
+
}]
|
|
505
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
506
|
+
let PostListItem = class PostListItem {
|
|
507
|
+
constructor(c, r, z) {
|
|
508
|
+
this.z = z;
|
|
509
|
+
c.detach();
|
|
510
|
+
this.el = r.nativeElement;
|
|
511
|
+
}
|
|
512
|
+
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 }); }
|
|
513
|
+
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 }); }
|
|
514
|
+
};
|
|
515
|
+
PostListItem = __decorate([
|
|
516
|
+
ProxyCmp({})
|
|
517
|
+
], PostListItem);
|
|
518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostListItem, decorators: [{
|
|
519
|
+
type: Component,
|
|
520
|
+
args: [{
|
|
521
|
+
selector: 'post-list-item',
|
|
522
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
523
|
+
template: '<ng-content></ng-content>',
|
|
524
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
525
|
+
inputs: [],
|
|
526
|
+
}]
|
|
527
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
243
528
|
let PostLogo = class PostLogo {
|
|
244
529
|
constructor(c, r, z) {
|
|
245
530
|
this.z = z;
|
|
246
531
|
c.detach();
|
|
247
532
|
this.el = r.nativeElement;
|
|
248
533
|
}
|
|
249
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
250
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
534
|
+
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 }); }
|
|
535
|
+
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
536
|
};
|
|
252
537
|
PostLogo = __decorate([
|
|
253
538
|
ProxyCmp({
|
|
254
539
|
inputs: ['url']
|
|
255
540
|
})
|
|
256
541
|
], PostLogo);
|
|
257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostLogo, decorators: [{
|
|
258
543
|
type: Component,
|
|
259
544
|
args: [{
|
|
260
545
|
selector: 'post-logo',
|
|
@@ -264,14 +549,157 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
264
549
|
inputs: ['url'],
|
|
265
550
|
}]
|
|
266
551
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
552
|
+
let PostMainnavigation = class PostMainnavigation {
|
|
553
|
+
constructor(c, r, z) {
|
|
554
|
+
this.z = z;
|
|
555
|
+
c.detach();
|
|
556
|
+
this.el = r.nativeElement;
|
|
557
|
+
}
|
|
558
|
+
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 }); }
|
|
559
|
+
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 }); }
|
|
560
|
+
};
|
|
561
|
+
PostMainnavigation = __decorate([
|
|
562
|
+
ProxyCmp({})
|
|
563
|
+
], PostMainnavigation);
|
|
564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMainnavigation, decorators: [{
|
|
565
|
+
type: Component,
|
|
566
|
+
args: [{
|
|
567
|
+
selector: 'post-mainnavigation',
|
|
568
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
569
|
+
template: '<ng-content></ng-content>',
|
|
570
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
571
|
+
inputs: [],
|
|
572
|
+
}]
|
|
573
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
574
|
+
let PostMegadropdown = class PostMegadropdown {
|
|
575
|
+
constructor(c, r, z) {
|
|
576
|
+
this.z = z;
|
|
577
|
+
c.detach();
|
|
578
|
+
this.el = r.nativeElement;
|
|
579
|
+
proxyOutputs(this, this.el, ['postToggleMegadropdown']);
|
|
580
|
+
}
|
|
581
|
+
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 }); }
|
|
582
|
+
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 }); }
|
|
583
|
+
};
|
|
584
|
+
PostMegadropdown = __decorate([
|
|
585
|
+
ProxyCmp({
|
|
586
|
+
methods: ['toggle', 'show', 'hide', 'focusFirst']
|
|
587
|
+
})
|
|
588
|
+
], PostMegadropdown);
|
|
589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMegadropdown, decorators: [{
|
|
590
|
+
type: Component,
|
|
591
|
+
args: [{
|
|
592
|
+
selector: 'post-megadropdown',
|
|
593
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
594
|
+
template: '<ng-content></ng-content>',
|
|
595
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
596
|
+
inputs: [],
|
|
597
|
+
}]
|
|
598
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
599
|
+
let PostMegadropdownTrigger = class PostMegadropdownTrigger {
|
|
600
|
+
constructor(c, r, z) {
|
|
601
|
+
this.z = z;
|
|
602
|
+
c.detach();
|
|
603
|
+
this.el = r.nativeElement;
|
|
604
|
+
}
|
|
605
|
+
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 }); }
|
|
606
|
+
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 }); }
|
|
607
|
+
};
|
|
608
|
+
PostMegadropdownTrigger = __decorate([
|
|
609
|
+
ProxyCmp({
|
|
610
|
+
inputs: ['for']
|
|
611
|
+
})
|
|
612
|
+
], PostMegadropdownTrigger);
|
|
613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMegadropdownTrigger, decorators: [{
|
|
614
|
+
type: Component,
|
|
615
|
+
args: [{
|
|
616
|
+
selector: 'post-megadropdown-trigger',
|
|
617
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
618
|
+
template: '<ng-content></ng-content>',
|
|
619
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
620
|
+
inputs: ['for'],
|
|
621
|
+
}]
|
|
622
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
623
|
+
let PostMenu = class PostMenu {
|
|
624
|
+
constructor(c, r, z) {
|
|
625
|
+
this.z = z;
|
|
626
|
+
c.detach();
|
|
627
|
+
this.el = r.nativeElement;
|
|
628
|
+
proxyOutputs(this, this.el, ['toggleMenu']);
|
|
629
|
+
}
|
|
630
|
+
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 }); }
|
|
631
|
+
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 }); }
|
|
632
|
+
};
|
|
633
|
+
PostMenu = __decorate([
|
|
634
|
+
ProxyCmp({
|
|
635
|
+
inputs: ['placement'],
|
|
636
|
+
methods: ['toggle', 'show', 'hide']
|
|
637
|
+
})
|
|
638
|
+
], PostMenu);
|
|
639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenu, decorators: [{
|
|
640
|
+
type: Component,
|
|
641
|
+
args: [{
|
|
642
|
+
selector: 'post-menu',
|
|
643
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
644
|
+
template: '<ng-content></ng-content>',
|
|
645
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
646
|
+
inputs: ['placement'],
|
|
647
|
+
}]
|
|
648
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
649
|
+
let PostMenuItem = class PostMenuItem {
|
|
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: PostMenuItem, 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: PostMenuItem, selector: "post-menu-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
657
|
+
};
|
|
658
|
+
PostMenuItem = __decorate([
|
|
659
|
+
ProxyCmp({})
|
|
660
|
+
], PostMenuItem);
|
|
661
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenuItem, decorators: [{
|
|
662
|
+
type: Component,
|
|
663
|
+
args: [{
|
|
664
|
+
selector: 'post-menu-item',
|
|
665
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
666
|
+
template: '<ng-content></ng-content>',
|
|
667
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
668
|
+
inputs: [],
|
|
669
|
+
}]
|
|
670
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
671
|
+
let PostMenuTrigger = class PostMenuTrigger {
|
|
672
|
+
constructor(c, r, z) {
|
|
673
|
+
this.z = z;
|
|
674
|
+
c.detach();
|
|
675
|
+
this.el = r.nativeElement;
|
|
676
|
+
}
|
|
677
|
+
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 }); }
|
|
678
|
+
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 }); }
|
|
679
|
+
};
|
|
680
|
+
PostMenuTrigger = __decorate([
|
|
681
|
+
ProxyCmp({
|
|
682
|
+
inputs: ['for']
|
|
683
|
+
})
|
|
684
|
+
], PostMenuTrigger);
|
|
685
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostMenuTrigger, decorators: [{
|
|
686
|
+
type: Component,
|
|
687
|
+
args: [{
|
|
688
|
+
selector: 'post-menu-trigger',
|
|
689
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
690
|
+
template: '<ng-content></ng-content>',
|
|
691
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
692
|
+
inputs: ['for'],
|
|
693
|
+
}]
|
|
694
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
267
695
|
let PostPopover = class PostPopover {
|
|
268
696
|
constructor(c, r, z) {
|
|
269
697
|
this.z = z;
|
|
270
698
|
c.detach();
|
|
271
699
|
this.el = r.nativeElement;
|
|
272
700
|
}
|
|
273
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
274
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
701
|
+
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 }); }
|
|
702
|
+
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
703
|
};
|
|
276
704
|
PostPopover = __decorate([
|
|
277
705
|
ProxyCmp({
|
|
@@ -279,7 +707,7 @@ PostPopover = __decorate([
|
|
|
279
707
|
methods: ['show', 'hide', 'toggle']
|
|
280
708
|
})
|
|
281
709
|
], PostPopover);
|
|
282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostPopover, decorators: [{
|
|
283
711
|
type: Component,
|
|
284
712
|
args: [{
|
|
285
713
|
selector: 'post-popover',
|
|
@@ -296,23 +724,23 @@ let PostPopovercontainer = class PostPopovercontainer {
|
|
|
296
724
|
this.el = r.nativeElement;
|
|
297
725
|
proxyOutputs(this, this.el, ['postToggle']);
|
|
298
726
|
}
|
|
299
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
300
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
727
|
+
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 }); }
|
|
728
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PostPopovercontainer, selector: "post-popovercontainer", inputs: { arrow: "arrow", edgeGap: "edgeGap", manualClose: "manualClose", placement: "placement", safeSpace: "safeSpace" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
301
729
|
};
|
|
302
730
|
PostPopovercontainer = __decorate([
|
|
303
731
|
ProxyCmp({
|
|
304
|
-
inputs: ['arrow', 'placement'],
|
|
732
|
+
inputs: ['arrow', 'edgeGap', 'manualClose', 'placement', 'safeSpace'],
|
|
305
733
|
methods: ['show', 'hide', 'toggle']
|
|
306
734
|
})
|
|
307
735
|
], PostPopovercontainer);
|
|
308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
736
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostPopovercontainer, decorators: [{
|
|
309
737
|
type: Component,
|
|
310
738
|
args: [{
|
|
311
739
|
selector: 'post-popovercontainer',
|
|
312
740
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
313
741
|
template: '<ng-content></ng-content>',
|
|
314
742
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
315
|
-
inputs: ['arrow', 'placement'],
|
|
743
|
+
inputs: ['arrow', 'edgeGap', 'manualClose', 'placement', 'safeSpace'],
|
|
316
744
|
}]
|
|
317
745
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
318
746
|
let PostRating = class PostRating {
|
|
@@ -322,15 +750,15 @@ let PostRating = class PostRating {
|
|
|
322
750
|
this.el = r.nativeElement;
|
|
323
751
|
proxyOutputs(this, this.el, ['postInput', 'postChange']);
|
|
324
752
|
}
|
|
325
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
326
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
753
|
+
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 }); }
|
|
754
|
+
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
755
|
};
|
|
328
756
|
PostRating = __decorate([
|
|
329
757
|
ProxyCmp({
|
|
330
758
|
inputs: ['currentRating', 'label', 'readonly', 'stars']
|
|
331
759
|
})
|
|
332
760
|
], PostRating);
|
|
333
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
761
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostRating, decorators: [{
|
|
334
762
|
type: Component,
|
|
335
763
|
args: [{
|
|
336
764
|
selector: 'post-rating',
|
|
@@ -346,15 +774,15 @@ let PostTabHeader = class PostTabHeader {
|
|
|
346
774
|
c.detach();
|
|
347
775
|
this.el = r.nativeElement;
|
|
348
776
|
}
|
|
349
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
350
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
777
|
+
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 }); }
|
|
778
|
+
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
779
|
};
|
|
352
780
|
PostTabHeader = __decorate([
|
|
353
781
|
ProxyCmp({
|
|
354
782
|
inputs: ['panel']
|
|
355
783
|
})
|
|
356
784
|
], PostTabHeader);
|
|
357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
785
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabHeader, decorators: [{
|
|
358
786
|
type: Component,
|
|
359
787
|
args: [{
|
|
360
788
|
selector: 'post-tab-header',
|
|
@@ -370,15 +798,15 @@ let PostTabPanel = class PostTabPanel {
|
|
|
370
798
|
c.detach();
|
|
371
799
|
this.el = r.nativeElement;
|
|
372
800
|
}
|
|
373
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
374
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
801
|
+
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 }); }
|
|
802
|
+
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
803
|
};
|
|
376
804
|
PostTabPanel = __decorate([
|
|
377
805
|
ProxyCmp({
|
|
378
806
|
inputs: ['name']
|
|
379
807
|
})
|
|
380
808
|
], PostTabPanel);
|
|
381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabPanel, decorators: [{
|
|
382
810
|
type: Component,
|
|
383
811
|
args: [{
|
|
384
812
|
selector: 'post-tab-panel',
|
|
@@ -395,8 +823,8 @@ let PostTabs = class PostTabs {
|
|
|
395
823
|
this.el = r.nativeElement;
|
|
396
824
|
proxyOutputs(this, this.el, ['postChange']);
|
|
397
825
|
}
|
|
398
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
399
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
826
|
+
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 }); }
|
|
827
|
+
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
828
|
};
|
|
401
829
|
PostTabs = __decorate([
|
|
402
830
|
ProxyCmp({
|
|
@@ -404,7 +832,7 @@ PostTabs = __decorate([
|
|
|
404
832
|
methods: ['show']
|
|
405
833
|
})
|
|
406
834
|
], PostTabs);
|
|
407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTabs, decorators: [{
|
|
408
836
|
type: Component,
|
|
409
837
|
args: [{
|
|
410
838
|
selector: 'post-tabs',
|
|
@@ -420,15 +848,15 @@ let PostTag = class PostTag {
|
|
|
420
848
|
c.detach();
|
|
421
849
|
this.el = r.nativeElement;
|
|
422
850
|
}
|
|
423
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
424
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
851
|
+
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 }); }
|
|
852
|
+
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
853
|
};
|
|
426
854
|
PostTag = __decorate([
|
|
427
855
|
ProxyCmp({
|
|
428
856
|
inputs: ['icon', 'size', 'variant']
|
|
429
857
|
})
|
|
430
858
|
], PostTag);
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTag, decorators: [{
|
|
432
860
|
type: Component,
|
|
433
861
|
args: [{
|
|
434
862
|
selector: 'post-tag',
|
|
@@ -438,14 +866,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
438
866
|
inputs: ['icon', 'size', 'variant'],
|
|
439
867
|
}]
|
|
440
868
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
869
|
+
let PostTogglebutton = class PostTogglebutton {
|
|
870
|
+
constructor(c, r, z) {
|
|
871
|
+
this.z = z;
|
|
872
|
+
c.detach();
|
|
873
|
+
this.el = r.nativeElement;
|
|
874
|
+
}
|
|
875
|
+
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 }); }
|
|
876
|
+
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 }); }
|
|
877
|
+
};
|
|
878
|
+
PostTogglebutton = __decorate([
|
|
879
|
+
ProxyCmp({
|
|
880
|
+
inputs: ['toggled']
|
|
881
|
+
})
|
|
882
|
+
], PostTogglebutton);
|
|
883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTogglebutton, decorators: [{
|
|
884
|
+
type: Component,
|
|
885
|
+
args: [{
|
|
886
|
+
selector: 'post-togglebutton',
|
|
887
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
888
|
+
template: '<ng-content></ng-content>',
|
|
889
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
890
|
+
inputs: ['toggled'],
|
|
891
|
+
}]
|
|
892
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
441
893
|
let PostTooltip = class PostTooltip {
|
|
442
894
|
constructor(c, r, z) {
|
|
443
895
|
this.z = z;
|
|
444
896
|
c.detach();
|
|
445
897
|
this.el = r.nativeElement;
|
|
446
898
|
}
|
|
447
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
448
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.
|
|
899
|
+
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 }); }
|
|
900
|
+
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
901
|
};
|
|
450
902
|
PostTooltip = __decorate([
|
|
451
903
|
ProxyCmp({
|
|
@@ -453,7 +905,7 @@ PostTooltip = __decorate([
|
|
|
453
905
|
methods: ['show', 'hide', 'toggle']
|
|
454
906
|
})
|
|
455
907
|
], PostTooltip);
|
|
456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
908
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostTooltip, decorators: [{
|
|
457
909
|
type: Component,
|
|
458
910
|
args: [{
|
|
459
911
|
selector: 'post-tooltip',
|
|
@@ -467,12 +919,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
467
919
|
const DIRECTIVES = [
|
|
468
920
|
PostAccordion,
|
|
469
921
|
PostAccordionItem,
|
|
470
|
-
|
|
922
|
+
PostAvatar,
|
|
923
|
+
PostBackToTop,
|
|
924
|
+
PostBanner,
|
|
925
|
+
PostBreadcrumb,
|
|
926
|
+
PostBreadcrumbItem,
|
|
471
927
|
PostCardControl,
|
|
928
|
+
PostClosebutton,
|
|
472
929
|
PostCollapsible,
|
|
473
930
|
PostCollapsibleTrigger,
|
|
931
|
+
PostFooter,
|
|
932
|
+
PostHeader,
|
|
474
933
|
PostIcon,
|
|
934
|
+
PostLanguageOption,
|
|
935
|
+
PostLanguageSwitch,
|
|
936
|
+
PostLinkarea,
|
|
937
|
+
PostList,
|
|
938
|
+
PostListItem,
|
|
475
939
|
PostLogo,
|
|
940
|
+
PostMainnavigation,
|
|
941
|
+
PostMegadropdown,
|
|
942
|
+
PostMegadropdownTrigger,
|
|
943
|
+
PostMenu,
|
|
944
|
+
PostMenuItem,
|
|
945
|
+
PostMenuTrigger,
|
|
476
946
|
PostPopover,
|
|
477
947
|
PostPopovercontainer,
|
|
478
948
|
PostRating,
|
|
@@ -480,6 +950,7 @@ const DIRECTIVES = [
|
|
|
480
950
|
PostTabPanel,
|
|
481
951
|
PostTabs,
|
|
482
952
|
PostTag,
|
|
953
|
+
PostTogglebutton,
|
|
483
954
|
PostTooltip
|
|
484
955
|
];
|
|
485
956
|
|
|
@@ -511,8 +982,8 @@ class PostCardControlCheckboxValueAccessorDirective {
|
|
|
511
982
|
setDisabledState(isDisabled) {
|
|
512
983
|
this.el.nativeElement.disabled = isDisabled;
|
|
513
984
|
}
|
|
514
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
515
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.
|
|
985
|
+
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 }); }
|
|
986
|
+
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
987
|
{
|
|
517
988
|
provide: NG_VALUE_ACCESSOR,
|
|
518
989
|
useExisting: PostCardControlCheckboxValueAccessorDirective,
|
|
@@ -520,7 +991,7 @@ class PostCardControlCheckboxValueAccessorDirective {
|
|
|
520
991
|
},
|
|
521
992
|
], ngImport: i0 }); }
|
|
522
993
|
}
|
|
523
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControlCheckboxValueAccessorDirective, decorators: [{
|
|
524
995
|
type: Directive,
|
|
525
996
|
args: [{
|
|
526
997
|
/* eslint-disable-next-line @angular-eslint/directive-selector */
|
|
@@ -570,8 +1041,8 @@ class PostCardControlRadioValueAccessorDirective {
|
|
|
570
1041
|
setDisabledState(isDisabled) {
|
|
571
1042
|
this.el.nativeElement.disabled = isDisabled;
|
|
572
1043
|
}
|
|
573
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.
|
|
574
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.
|
|
1044
|
+
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 }); }
|
|
1045
|
+
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
1046
|
{
|
|
576
1047
|
provide: NG_VALUE_ACCESSOR,
|
|
577
1048
|
useExisting: PostCardControlRadioValueAccessorDirective,
|
|
@@ -579,7 +1050,7 @@ class PostCardControlRadioValueAccessorDirective {
|
|
|
579
1050
|
},
|
|
580
1051
|
], ngImport: i0 }); }
|
|
581
1052
|
}
|
|
582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
1053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostCardControlRadioValueAccessorDirective, decorators: [{
|
|
583
1054
|
type: Directive,
|
|
584
1055
|
args: [{
|
|
585
1056
|
/* eslint-disable-next-line @angular-eslint/directive-selector */
|
|
@@ -606,11 +1077,11 @@ const DECLARATIONS = [
|
|
|
606
1077
|
PostCardControlRadioValueAccessorDirective,
|
|
607
1078
|
];
|
|
608
1079
|
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,
|
|
1080
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1081
|
+
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, PostLinkarea, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopovercontainer, PostRating, PostTabHeader, PostTabPanel, PostTabs, PostTag, PostTogglebutton, PostTooltip, PostCardControlCheckboxValueAccessorDirective,
|
|
1082
|
+
PostCardControlRadioValueAccessorDirective], exports: [PostAccordion, PostAccordionItem, PostAvatar, PostBackToTop, PostBanner, PostBreadcrumb, PostBreadcrumbItem, PostCardControl, PostClosebutton, PostCollapsible, PostCollapsibleTrigger, PostFooter, PostHeader, PostIcon, PostLanguageOption, PostLanguageSwitch, PostLinkarea, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopovercontainer, PostRating, PostTabHeader, PostTabPanel, PostTabs, PostTag, PostTogglebutton, PostTooltip, PostCardControlCheckboxValueAccessorDirective,
|
|
612
1083
|
PostCardControlRadioValueAccessorDirective] }); }
|
|
613
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.
|
|
1084
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostComponentsModule, providers: [
|
|
614
1085
|
{
|
|
615
1086
|
// Use ENVIRONMENT_INITIALIZER to be compatible with lazy-loaded modules
|
|
616
1087
|
provide: ENVIRONMENT_INITIALIZER,
|
|
@@ -629,7 +1100,7 @@ class PostComponentsModule {
|
|
|
629
1100
|
},
|
|
630
1101
|
] }); }
|
|
631
1102
|
}
|
|
632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.
|
|
1103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PostComponentsModule, decorators: [{
|
|
633
1104
|
type: NgModule,
|
|
634
1105
|
args: [{
|
|
635
1106
|
declarations: DECLARATIONS,
|
|
@@ -663,5 +1134,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
|
|
|
663
1134
|
* Generated bundle index. Do not edit.
|
|
664
1135
|
*/
|
|
665
1136
|
|
|
666
|
-
export { DIRECTIVES, PostAccordion, PostAccordionItem,
|
|
1137
|
+
export { DIRECTIVES, PostAccordion, PostAccordionItem, PostAvatar, PostBackToTop, PostBanner, PostBreadcrumb, PostBreadcrumbItem, PostCardControl, PostCardControlCheckboxValueAccessorDirective, PostCardControlRadioValueAccessorDirective, PostClosebutton, PostCollapsible, PostCollapsibleTrigger, PostComponentsModule, PostFooter, PostHeader, PostIcon, PostLanguageOption, PostLanguageSwitch, PostLinkarea, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopovercontainer, PostRating, PostTabHeader, PostTabPanel, PostTabs, PostTag, PostTogglebutton, PostTooltip };
|
|
667
1138
|
//# sourceMappingURL=swisspost-design-system-components-angular.mjs.map
|