@swisspost/design-system-components-angular 0.0.11-beta → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/esm2022/lib/components.module.mjs +30 -30
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -51
- package/esm2022/lib/stencil-generated/components.mjs +294 -294
- package/esm2022/lib/stencil-generated/index.mjs +14 -14
- package/esm2022/public-api.mjs +6 -6
- package/esm2022/swisspost-design-system-components-angular.mjs +4 -4
- package/fesm2022/swisspost-design-system-components-angular.mjs +371 -363
- package/fesm2022/swisspost-design-system-components-angular.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/components.module.d.ts +7 -7
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -9
- package/lib/stencil-generated/components.d.ts +122 -122
- package/lib/stencil-generated/index.d.ts +2 -2
- package/package.json +3 -3
- package/public-api.d.ts +3 -3
|
@@ -4,379 +4,387 @@ import { __decorate } from 'tslib';
|
|
|
4
4
|
import { fromEvent } from 'rxjs';
|
|
5
5
|
import { defineCustomElements } from '@swisspost/design-system-components/loader';
|
|
6
6
|
|
|
7
|
-
/* eslint-disable */
|
|
8
|
-
/* tslint:disable */
|
|
9
|
-
const proxyInputs = (Cmp, inputs) => {
|
|
10
|
-
const Prototype = Cmp.prototype;
|
|
11
|
-
inputs.forEach((item) => {
|
|
12
|
-
Object.defineProperty(Prototype, item, {
|
|
13
|
-
get() {
|
|
14
|
-
return this.el[item];
|
|
15
|
-
},
|
|
16
|
-
set(val) {
|
|
17
|
-
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
18
|
-
},
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
const
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
const
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
/* tslint:disable */
|
|
9
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
10
|
+
const Prototype = Cmp.prototype;
|
|
11
|
+
inputs.forEach((item) => {
|
|
12
|
+
Object.defineProperty(Prototype, item, {
|
|
13
|
+
get() {
|
|
14
|
+
return this.el[item];
|
|
15
|
+
},
|
|
16
|
+
set(val) {
|
|
17
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
18
|
+
},
|
|
19
|
+
/**
|
|
20
|
+
* In the event that proxyInputs is called
|
|
21
|
+
* multiple times re-defining these inputs
|
|
22
|
+
* will cause an error to be thrown. As a result
|
|
23
|
+
* we set configurable: true to indicate these
|
|
24
|
+
* properties can be changed.
|
|
25
|
+
*/
|
|
26
|
+
configurable: true,
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
const proxyMethods = (Cmp, methods) => {
|
|
31
|
+
const Prototype = Cmp.prototype;
|
|
32
|
+
methods.forEach((methodName) => {
|
|
33
|
+
Prototype[methodName] = function () {
|
|
34
|
+
const args = arguments;
|
|
35
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
36
|
+
};
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
const proxyOutputs = (instance, el, events) => {
|
|
40
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
41
|
+
};
|
|
42
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
43
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
44
|
+
customElements.define(tagName, customElement);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
48
|
+
function ProxyCmp(opts) {
|
|
49
|
+
const decorator = function (cls) {
|
|
50
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
51
|
+
if (defineCustomElementFn !== undefined) {
|
|
52
|
+
defineCustomElementFn();
|
|
53
|
+
}
|
|
54
|
+
if (inputs) {
|
|
55
|
+
proxyInputs(cls, inputs);
|
|
56
|
+
}
|
|
57
|
+
if (methods) {
|
|
58
|
+
proxyMethods(cls, methods);
|
|
59
|
+
}
|
|
60
|
+
return cls;
|
|
61
|
+
};
|
|
62
|
+
return decorator;
|
|
55
63
|
}
|
|
56
64
|
|
|
57
|
-
let PostAccordion = class PostAccordion {
|
|
58
|
-
constructor(c, r, z) {
|
|
59
|
-
this.z = z;
|
|
60
|
-
c.detach();
|
|
61
|
-
this.el = r.nativeElement;
|
|
62
|
-
}
|
|
63
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
64
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostAccordion, selector: "post-accordion", inputs: { multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
65
|
-
};
|
|
66
|
-
PostAccordion = __decorate([
|
|
67
|
-
ProxyCmp({
|
|
68
|
-
inputs: ['multiple'],
|
|
69
|
-
methods: ['toggle', 'expandAll', 'collapseAll']
|
|
70
|
-
})
|
|
71
|
-
], PostAccordion);
|
|
72
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordion, decorators: [{
|
|
73
|
-
type: Component,
|
|
74
|
-
args: [{
|
|
75
|
-
selector: 'post-accordion',
|
|
76
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
77
|
-
template: '<ng-content></ng-content>',
|
|
78
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
79
|
-
inputs: ['multiple'],
|
|
80
|
-
}]
|
|
81
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
82
|
-
let PostAccordionItem = class PostAccordionItem {
|
|
83
|
-
constructor(c, r, z) {
|
|
84
|
-
this.z = z;
|
|
85
|
-
c.detach();
|
|
86
|
-
this.el = r.nativeElement;
|
|
87
|
-
}
|
|
88
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
89
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostAccordionItem, selector: "post-accordion-item", inputs: { collapsed: "collapsed", headingLevel: "headingLevel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
90
|
-
};
|
|
91
|
-
PostAccordionItem = __decorate([
|
|
92
|
-
ProxyCmp({
|
|
93
|
-
inputs: ['collapsed', 'headingLevel'],
|
|
94
|
-
methods: ['toggle']
|
|
95
|
-
})
|
|
96
|
-
], PostAccordionItem);
|
|
97
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordionItem, decorators: [{
|
|
98
|
-
type: Component,
|
|
99
|
-
args: [{
|
|
100
|
-
selector: 'post-accordion-item',
|
|
101
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
102
|
-
template: '<ng-content></ng-content>',
|
|
103
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
104
|
-
inputs: ['collapsed', 'headingLevel'],
|
|
105
|
-
}]
|
|
106
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
107
|
-
let PostAlert = class PostAlert {
|
|
108
|
-
constructor(c, r, z) {
|
|
109
|
-
this.z = z;
|
|
110
|
-
c.detach();
|
|
111
|
-
this.el = r.nativeElement;
|
|
112
|
-
proxyOutputs(this, this.el, ['dismissed']);
|
|
113
|
-
}
|
|
114
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
115
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostAlert, selector: "post-alert", inputs: { dismissLabel: "dismissLabel", dismissible: "dismissible", fixed: "fixed", icon: "icon", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
116
|
-
};
|
|
117
|
-
PostAlert = __decorate([
|
|
118
|
-
ProxyCmp({
|
|
119
|
-
inputs: ['dismissLabel', 'dismissible', 'fixed', 'icon', 'type'],
|
|
120
|
-
methods: ['dismiss']
|
|
121
|
-
})
|
|
122
|
-
], PostAlert);
|
|
123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAlert, decorators: [{
|
|
124
|
-
type: Component,
|
|
125
|
-
args: [{
|
|
126
|
-
selector: 'post-alert',
|
|
127
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
128
|
-
template: '<ng-content></ng-content>',
|
|
129
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
130
|
-
inputs: ['dismissLabel', 'dismissible', 'fixed', 'icon', 'type'],
|
|
131
|
-
}]
|
|
132
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
133
|
-
let PostCollapsible = class PostCollapsible {
|
|
134
|
-
constructor(c, r, z) {
|
|
135
|
-
this.z = z;
|
|
136
|
-
c.detach();
|
|
137
|
-
this.el = r.nativeElement;
|
|
138
|
-
proxyOutputs(this, this.el, ['collapseChange']);
|
|
139
|
-
}
|
|
140
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostCollapsible, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
141
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostCollapsible, selector: "post-collapsible", inputs: { collapsed: "collapsed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
142
|
-
};
|
|
143
|
-
PostCollapsible = __decorate([
|
|
144
|
-
ProxyCmp({
|
|
145
|
-
inputs: ['collapsed'],
|
|
146
|
-
methods: ['toggle']
|
|
147
|
-
})
|
|
148
|
-
], PostCollapsible);
|
|
149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostCollapsible, decorators: [{
|
|
150
|
-
type: Component,
|
|
151
|
-
args: [{
|
|
152
|
-
selector: 'post-collapsible',
|
|
153
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
154
|
-
template: '<ng-content></ng-content>',
|
|
155
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
156
|
-
inputs: ['collapsed'],
|
|
157
|
-
}]
|
|
158
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
159
|
-
let PostIcon = class PostIcon {
|
|
160
|
-
constructor(c, r, z) {
|
|
161
|
-
this.z = z;
|
|
162
|
-
c.detach();
|
|
163
|
-
this.el = r.nativeElement;
|
|
164
|
-
}
|
|
165
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
166
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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 }); }
|
|
167
|
-
};
|
|
168
|
-
PostIcon = __decorate([
|
|
169
|
-
ProxyCmp({
|
|
170
|
-
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale']
|
|
171
|
-
})
|
|
172
|
-
], PostIcon);
|
|
173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostIcon, decorators: [{
|
|
174
|
-
type: Component,
|
|
175
|
-
args: [{
|
|
176
|
-
selector: 'post-icon',
|
|
177
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
178
|
-
template: '<ng-content></ng-content>',
|
|
179
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
180
|
-
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale'],
|
|
181
|
-
}]
|
|
182
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
183
|
-
let PostPopover = class PostPopover {
|
|
184
|
-
constructor(c, r, z) {
|
|
185
|
-
this.z = z;
|
|
186
|
-
c.detach();
|
|
187
|
-
this.el = r.nativeElement;
|
|
188
|
-
}
|
|
189
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
190
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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 }); }
|
|
191
|
-
};
|
|
192
|
-
PostPopover = __decorate([
|
|
193
|
-
ProxyCmp({
|
|
194
|
-
inputs: ['arrow', 'closeButtonCaption', 'placement'],
|
|
195
|
-
methods: ['show', 'hide', 'toggle']
|
|
196
|
-
})
|
|
197
|
-
], PostPopover);
|
|
198
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopover, decorators: [{
|
|
199
|
-
type: Component,
|
|
200
|
-
args: [{
|
|
201
|
-
selector: 'post-popover',
|
|
202
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
203
|
-
template: '<ng-content></ng-content>',
|
|
204
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
205
|
-
inputs: ['arrow', 'closeButtonCaption', 'placement'],
|
|
206
|
-
}]
|
|
207
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
208
|
-
let PostPopovercontainer = class PostPopovercontainer {
|
|
209
|
-
constructor(c, r, z) {
|
|
210
|
-
this.z = z;
|
|
211
|
-
c.detach();
|
|
212
|
-
this.el = r.nativeElement;
|
|
213
|
-
proxyOutputs(this, this.el, ['postPopoverToggled']);
|
|
214
|
-
}
|
|
215
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopovercontainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
216
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostPopovercontainer, selector: "post-popovercontainer", inputs: { arrow: "arrow", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
217
|
-
};
|
|
218
|
-
PostPopovercontainer = __decorate([
|
|
219
|
-
ProxyCmp({
|
|
220
|
-
inputs: ['arrow', 'placement'],
|
|
221
|
-
methods: ['show', 'hide', 'toggle']
|
|
222
|
-
})
|
|
223
|
-
], PostPopovercontainer);
|
|
224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopovercontainer, decorators: [{
|
|
225
|
-
type: Component,
|
|
226
|
-
args: [{
|
|
227
|
-
selector: 'post-popovercontainer',
|
|
228
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
229
|
-
template: '<ng-content></ng-content>',
|
|
230
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
231
|
-
inputs: ['arrow', 'placement'],
|
|
232
|
-
}]
|
|
233
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
234
|
-
let PostTabHeader = class PostTabHeader {
|
|
235
|
-
constructor(c, r, z) {
|
|
236
|
-
this.z = z;
|
|
237
|
-
c.detach();
|
|
238
|
-
this.el = r.nativeElement;
|
|
239
|
-
}
|
|
240
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
241
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTabHeader, selector: "post-tab-header", inputs: { panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
242
|
-
};
|
|
243
|
-
PostTabHeader = __decorate([
|
|
244
|
-
ProxyCmp({
|
|
245
|
-
inputs: ['panel']
|
|
246
|
-
})
|
|
247
|
-
], PostTabHeader);
|
|
248
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabHeader, decorators: [{
|
|
249
|
-
type: Component,
|
|
250
|
-
args: [{
|
|
251
|
-
selector: 'post-tab-header',
|
|
252
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
253
|
-
template: '<ng-content></ng-content>',
|
|
254
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
255
|
-
inputs: ['panel'],
|
|
256
|
-
}]
|
|
257
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
258
|
-
let PostTabPanel = class PostTabPanel {
|
|
259
|
-
constructor(c, r, z) {
|
|
260
|
-
this.z = z;
|
|
261
|
-
c.detach();
|
|
262
|
-
this.el = r.nativeElement;
|
|
263
|
-
}
|
|
264
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
265
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTabPanel, selector: "post-tab-panel", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
266
|
-
};
|
|
267
|
-
PostTabPanel = __decorate([
|
|
268
|
-
ProxyCmp({
|
|
269
|
-
inputs: ['name']
|
|
270
|
-
})
|
|
271
|
-
], PostTabPanel);
|
|
272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabPanel, decorators: [{
|
|
273
|
-
type: Component,
|
|
274
|
-
args: [{
|
|
275
|
-
selector: 'post-tab-panel',
|
|
276
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
277
|
-
template: '<ng-content></ng-content>',
|
|
278
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
279
|
-
inputs: ['name'],
|
|
280
|
-
}]
|
|
281
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
282
|
-
let PostTabs = class PostTabs {
|
|
283
|
-
constructor(c, r, z) {
|
|
284
|
-
this.z = z;
|
|
285
|
-
c.detach();
|
|
286
|
-
this.el = r.nativeElement;
|
|
287
|
-
proxyOutputs(this, this.el, ['tabChange']);
|
|
288
|
-
}
|
|
289
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
290
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTabs, selector: "post-tabs", inputs: { activePanel: "activePanel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
291
|
-
};
|
|
292
|
-
PostTabs = __decorate([
|
|
293
|
-
ProxyCmp({
|
|
294
|
-
inputs: ['activePanel'],
|
|
295
|
-
methods: ['show']
|
|
296
|
-
})
|
|
297
|
-
], PostTabs);
|
|
298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabs, decorators: [{
|
|
299
|
-
type: Component,
|
|
300
|
-
args: [{
|
|
301
|
-
selector: 'post-tabs',
|
|
302
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
303
|
-
template: '<ng-content></ng-content>',
|
|
304
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
305
|
-
inputs: ['activePanel'],
|
|
306
|
-
}]
|
|
307
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
308
|
-
let PostTooltip = class PostTooltip {
|
|
309
|
-
constructor(c, r, z) {
|
|
310
|
-
this.z = z;
|
|
311
|
-
c.detach();
|
|
312
|
-
this.el = r.nativeElement;
|
|
313
|
-
}
|
|
314
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
315
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTooltip, selector: "post-tooltip", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
316
|
-
};
|
|
317
|
-
PostTooltip = __decorate([
|
|
318
|
-
ProxyCmp({
|
|
319
|
-
inputs: ['placement'],
|
|
320
|
-
methods: ['show', 'hide', 'toggle']
|
|
321
|
-
})
|
|
322
|
-
], PostTooltip);
|
|
323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTooltip, decorators: [{
|
|
324
|
-
type: Component,
|
|
325
|
-
args: [{
|
|
326
|
-
selector: 'post-tooltip',
|
|
327
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
328
|
-
template: '<ng-content></ng-content>',
|
|
329
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
330
|
-
inputs: ['placement'],
|
|
331
|
-
}]
|
|
65
|
+
let PostAccordion = class PostAccordion {
|
|
66
|
+
constructor(c, r, z) {
|
|
67
|
+
this.z = z;
|
|
68
|
+
c.detach();
|
|
69
|
+
this.el = r.nativeElement;
|
|
70
|
+
}
|
|
71
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
72
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostAccordion, selector: "post-accordion", inputs: { multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
73
|
+
};
|
|
74
|
+
PostAccordion = __decorate([
|
|
75
|
+
ProxyCmp({
|
|
76
|
+
inputs: ['multiple'],
|
|
77
|
+
methods: ['toggle', 'expandAll', 'collapseAll']
|
|
78
|
+
})
|
|
79
|
+
], PostAccordion);
|
|
80
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordion, decorators: [{
|
|
81
|
+
type: Component,
|
|
82
|
+
args: [{
|
|
83
|
+
selector: 'post-accordion',
|
|
84
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
85
|
+
template: '<ng-content></ng-content>',
|
|
86
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
87
|
+
inputs: ['multiple'],
|
|
88
|
+
}]
|
|
89
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
90
|
+
let PostAccordionItem = class PostAccordionItem {
|
|
91
|
+
constructor(c, r, z) {
|
|
92
|
+
this.z = z;
|
|
93
|
+
c.detach();
|
|
94
|
+
this.el = r.nativeElement;
|
|
95
|
+
}
|
|
96
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
97
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostAccordionItem, selector: "post-accordion-item", inputs: { collapsed: "collapsed", headingLevel: "headingLevel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
98
|
+
};
|
|
99
|
+
PostAccordionItem = __decorate([
|
|
100
|
+
ProxyCmp({
|
|
101
|
+
inputs: ['collapsed', 'headingLevel'],
|
|
102
|
+
methods: ['toggle']
|
|
103
|
+
})
|
|
104
|
+
], PostAccordionItem);
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAccordionItem, decorators: [{
|
|
106
|
+
type: Component,
|
|
107
|
+
args: [{
|
|
108
|
+
selector: 'post-accordion-item',
|
|
109
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
110
|
+
template: '<ng-content></ng-content>',
|
|
111
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
112
|
+
inputs: ['collapsed', 'headingLevel'],
|
|
113
|
+
}]
|
|
114
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
115
|
+
let PostAlert = class PostAlert {
|
|
116
|
+
constructor(c, r, z) {
|
|
117
|
+
this.z = z;
|
|
118
|
+
c.detach();
|
|
119
|
+
this.el = r.nativeElement;
|
|
120
|
+
proxyOutputs(this, this.el, ['dismissed']);
|
|
121
|
+
}
|
|
122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAlert, 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: "16.2.12", type: PostAlert, selector: "post-alert", inputs: { dismissLabel: "dismissLabel", dismissible: "dismissible", fixed: "fixed", icon: "icon", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
124
|
+
};
|
|
125
|
+
PostAlert = __decorate([
|
|
126
|
+
ProxyCmp({
|
|
127
|
+
inputs: ['dismissLabel', 'dismissible', 'fixed', 'icon', 'type'],
|
|
128
|
+
methods: ['dismiss']
|
|
129
|
+
})
|
|
130
|
+
], PostAlert);
|
|
131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostAlert, decorators: [{
|
|
132
|
+
type: Component,
|
|
133
|
+
args: [{
|
|
134
|
+
selector: 'post-alert',
|
|
135
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
136
|
+
template: '<ng-content></ng-content>',
|
|
137
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
138
|
+
inputs: ['dismissLabel', 'dismissible', 'fixed', 'icon', 'type'],
|
|
139
|
+
}]
|
|
140
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
141
|
+
let PostCollapsible = class PostCollapsible {
|
|
142
|
+
constructor(c, r, z) {
|
|
143
|
+
this.z = z;
|
|
144
|
+
c.detach();
|
|
145
|
+
this.el = r.nativeElement;
|
|
146
|
+
proxyOutputs(this, this.el, ['collapseChange']);
|
|
147
|
+
}
|
|
148
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostCollapsible, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
149
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostCollapsible, selector: "post-collapsible", inputs: { collapsed: "collapsed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
150
|
+
};
|
|
151
|
+
PostCollapsible = __decorate([
|
|
152
|
+
ProxyCmp({
|
|
153
|
+
inputs: ['collapsed'],
|
|
154
|
+
methods: ['toggle']
|
|
155
|
+
})
|
|
156
|
+
], PostCollapsible);
|
|
157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostCollapsible, decorators: [{
|
|
158
|
+
type: Component,
|
|
159
|
+
args: [{
|
|
160
|
+
selector: 'post-collapsible',
|
|
161
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
162
|
+
template: '<ng-content></ng-content>',
|
|
163
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
164
|
+
inputs: ['collapsed'],
|
|
165
|
+
}]
|
|
166
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
167
|
+
let PostIcon = class PostIcon {
|
|
168
|
+
constructor(c, r, z) {
|
|
169
|
+
this.z = z;
|
|
170
|
+
c.detach();
|
|
171
|
+
this.el = r.nativeElement;
|
|
172
|
+
}
|
|
173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
174
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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 }); }
|
|
175
|
+
};
|
|
176
|
+
PostIcon = __decorate([
|
|
177
|
+
ProxyCmp({
|
|
178
|
+
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale']
|
|
179
|
+
})
|
|
180
|
+
], PostIcon);
|
|
181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostIcon, decorators: [{
|
|
182
|
+
type: Component,
|
|
183
|
+
args: [{
|
|
184
|
+
selector: 'post-icon',
|
|
185
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
186
|
+
template: '<ng-content></ng-content>',
|
|
187
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
188
|
+
inputs: ['animation', 'base', 'flipH', 'flipV', 'name', 'rotate', 'scale'],
|
|
189
|
+
}]
|
|
190
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
191
|
+
let PostPopover = class PostPopover {
|
|
192
|
+
constructor(c, r, z) {
|
|
193
|
+
this.z = z;
|
|
194
|
+
c.detach();
|
|
195
|
+
this.el = r.nativeElement;
|
|
196
|
+
}
|
|
197
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
198
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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 }); }
|
|
199
|
+
};
|
|
200
|
+
PostPopover = __decorate([
|
|
201
|
+
ProxyCmp({
|
|
202
|
+
inputs: ['arrow', 'closeButtonCaption', 'placement'],
|
|
203
|
+
methods: ['show', 'hide', 'toggle']
|
|
204
|
+
})
|
|
205
|
+
], PostPopover);
|
|
206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopover, decorators: [{
|
|
207
|
+
type: Component,
|
|
208
|
+
args: [{
|
|
209
|
+
selector: 'post-popover',
|
|
210
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
211
|
+
template: '<ng-content></ng-content>',
|
|
212
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
213
|
+
inputs: ['arrow', 'closeButtonCaption', 'placement'],
|
|
214
|
+
}]
|
|
215
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
216
|
+
let PostPopovercontainer = class PostPopovercontainer {
|
|
217
|
+
constructor(c, r, z) {
|
|
218
|
+
this.z = z;
|
|
219
|
+
c.detach();
|
|
220
|
+
this.el = r.nativeElement;
|
|
221
|
+
proxyOutputs(this, this.el, ['postPopoverToggled']);
|
|
222
|
+
}
|
|
223
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopovercontainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
224
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostPopovercontainer, selector: "post-popovercontainer", inputs: { arrow: "arrow", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
225
|
+
};
|
|
226
|
+
PostPopovercontainer = __decorate([
|
|
227
|
+
ProxyCmp({
|
|
228
|
+
inputs: ['arrow', 'placement'],
|
|
229
|
+
methods: ['show', 'hide', 'toggle']
|
|
230
|
+
})
|
|
231
|
+
], PostPopovercontainer);
|
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostPopovercontainer, decorators: [{
|
|
233
|
+
type: Component,
|
|
234
|
+
args: [{
|
|
235
|
+
selector: 'post-popovercontainer',
|
|
236
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
237
|
+
template: '<ng-content></ng-content>',
|
|
238
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
239
|
+
inputs: ['arrow', 'placement'],
|
|
240
|
+
}]
|
|
241
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
242
|
+
let PostTabHeader = class PostTabHeader {
|
|
243
|
+
constructor(c, r, z) {
|
|
244
|
+
this.z = z;
|
|
245
|
+
c.detach();
|
|
246
|
+
this.el = r.nativeElement;
|
|
247
|
+
}
|
|
248
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
249
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTabHeader, selector: "post-tab-header", inputs: { panel: "panel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
250
|
+
};
|
|
251
|
+
PostTabHeader = __decorate([
|
|
252
|
+
ProxyCmp({
|
|
253
|
+
inputs: ['panel']
|
|
254
|
+
})
|
|
255
|
+
], PostTabHeader);
|
|
256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabHeader, decorators: [{
|
|
257
|
+
type: Component,
|
|
258
|
+
args: [{
|
|
259
|
+
selector: 'post-tab-header',
|
|
260
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
261
|
+
template: '<ng-content></ng-content>',
|
|
262
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
263
|
+
inputs: ['panel'],
|
|
264
|
+
}]
|
|
265
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
266
|
+
let PostTabPanel = class PostTabPanel {
|
|
267
|
+
constructor(c, r, z) {
|
|
268
|
+
this.z = z;
|
|
269
|
+
c.detach();
|
|
270
|
+
this.el = r.nativeElement;
|
|
271
|
+
}
|
|
272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
273
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTabPanel, selector: "post-tab-panel", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
274
|
+
};
|
|
275
|
+
PostTabPanel = __decorate([
|
|
276
|
+
ProxyCmp({
|
|
277
|
+
inputs: ['name']
|
|
278
|
+
})
|
|
279
|
+
], PostTabPanel);
|
|
280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabPanel, decorators: [{
|
|
281
|
+
type: Component,
|
|
282
|
+
args: [{
|
|
283
|
+
selector: 'post-tab-panel',
|
|
284
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
285
|
+
template: '<ng-content></ng-content>',
|
|
286
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
287
|
+
inputs: ['name'],
|
|
288
|
+
}]
|
|
289
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
290
|
+
let PostTabs = class PostTabs {
|
|
291
|
+
constructor(c, r, z) {
|
|
292
|
+
this.z = z;
|
|
293
|
+
c.detach();
|
|
294
|
+
this.el = r.nativeElement;
|
|
295
|
+
proxyOutputs(this, this.el, ['tabChange']);
|
|
296
|
+
}
|
|
297
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
298
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTabs, selector: "post-tabs", inputs: { activePanel: "activePanel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
299
|
+
};
|
|
300
|
+
PostTabs = __decorate([
|
|
301
|
+
ProxyCmp({
|
|
302
|
+
inputs: ['activePanel'],
|
|
303
|
+
methods: ['show']
|
|
304
|
+
})
|
|
305
|
+
], PostTabs);
|
|
306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTabs, decorators: [{
|
|
307
|
+
type: Component,
|
|
308
|
+
args: [{
|
|
309
|
+
selector: 'post-tabs',
|
|
310
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
311
|
+
template: '<ng-content></ng-content>',
|
|
312
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
313
|
+
inputs: ['activePanel'],
|
|
314
|
+
}]
|
|
315
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
316
|
+
let PostTooltip = class PostTooltip {
|
|
317
|
+
constructor(c, r, z) {
|
|
318
|
+
this.z = z;
|
|
319
|
+
c.detach();
|
|
320
|
+
this.el = r.nativeElement;
|
|
321
|
+
}
|
|
322
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
323
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PostTooltip, selector: "post-tooltip", inputs: { arrow: "arrow", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
324
|
+
};
|
|
325
|
+
PostTooltip = __decorate([
|
|
326
|
+
ProxyCmp({
|
|
327
|
+
inputs: ['arrow', 'placement'],
|
|
328
|
+
methods: ['show', 'hide', 'toggle']
|
|
329
|
+
})
|
|
330
|
+
], PostTooltip);
|
|
331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostTooltip, decorators: [{
|
|
332
|
+
type: Component,
|
|
333
|
+
args: [{
|
|
334
|
+
selector: 'post-tooltip',
|
|
335
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
336
|
+
template: '<ng-content></ng-content>',
|
|
337
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
338
|
+
inputs: ['arrow', 'placement'],
|
|
339
|
+
}]
|
|
332
340
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
333
341
|
|
|
334
|
-
const DIRECTIVES = [
|
|
335
|
-
PostAccordion,
|
|
336
|
-
PostAccordionItem,
|
|
337
|
-
PostAlert,
|
|
338
|
-
PostCollapsible,
|
|
339
|
-
PostIcon,
|
|
340
|
-
PostPopover,
|
|
341
|
-
PostPopovercontainer,
|
|
342
|
-
PostTabHeader,
|
|
343
|
-
PostTabPanel,
|
|
344
|
-
PostTabs,
|
|
345
|
-
PostTooltip
|
|
342
|
+
const DIRECTIVES = [
|
|
343
|
+
PostAccordion,
|
|
344
|
+
PostAccordionItem,
|
|
345
|
+
PostAlert,
|
|
346
|
+
PostCollapsible,
|
|
347
|
+
PostIcon,
|
|
348
|
+
PostPopover,
|
|
349
|
+
PostPopovercontainer,
|
|
350
|
+
PostTabHeader,
|
|
351
|
+
PostTabPanel,
|
|
352
|
+
PostTabs,
|
|
353
|
+
PostTooltip
|
|
346
354
|
];
|
|
347
355
|
|
|
348
|
-
class PostComponentsModule {
|
|
349
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
350
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, declarations: [PostAccordion, PostAccordionItem, PostAlert, PostCollapsible, PostIcon, PostPopover, PostPopovercontainer, PostTabHeader, PostTabPanel, PostTabs, PostTooltip], exports: [PostAccordion, PostAccordionItem, PostAlert, PostCollapsible, PostIcon, PostPopover, PostPopovercontainer, PostTabHeader, PostTabPanel, PostTabs, PostTooltip] }); }
|
|
351
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, providers: [
|
|
352
|
-
{
|
|
353
|
-
provide: APP_INITIALIZER,
|
|
354
|
-
useFactory: () => defineCustomElements,
|
|
355
|
-
multi: true,
|
|
356
|
-
},
|
|
357
|
-
] }); }
|
|
358
|
-
}
|
|
359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, decorators: [{
|
|
360
|
-
type: NgModule,
|
|
361
|
-
args: [{
|
|
362
|
-
declarations: [...DIRECTIVES],
|
|
363
|
-
providers: [
|
|
364
|
-
{
|
|
365
|
-
provide: APP_INITIALIZER,
|
|
366
|
-
useFactory: () => defineCustomElements,
|
|
367
|
-
multi: true,
|
|
368
|
-
},
|
|
369
|
-
],
|
|
370
|
-
exports: [...DIRECTIVES],
|
|
371
|
-
}]
|
|
356
|
+
class PostComponentsModule {
|
|
357
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
358
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, declarations: [PostAccordion, PostAccordionItem, PostAlert, PostCollapsible, PostIcon, PostPopover, PostPopovercontainer, PostTabHeader, PostTabPanel, PostTabs, PostTooltip], exports: [PostAccordion, PostAccordionItem, PostAlert, PostCollapsible, PostIcon, PostPopover, PostPopovercontainer, PostTabHeader, PostTabPanel, PostTabs, PostTooltip] }); }
|
|
359
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, providers: [
|
|
360
|
+
{
|
|
361
|
+
provide: APP_INITIALIZER,
|
|
362
|
+
useFactory: () => defineCustomElements,
|
|
363
|
+
multi: true,
|
|
364
|
+
},
|
|
365
|
+
] }); }
|
|
366
|
+
}
|
|
367
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PostComponentsModule, decorators: [{
|
|
368
|
+
type: NgModule,
|
|
369
|
+
args: [{
|
|
370
|
+
declarations: [...DIRECTIVES],
|
|
371
|
+
providers: [
|
|
372
|
+
{
|
|
373
|
+
provide: APP_INITIALIZER,
|
|
374
|
+
useFactory: () => defineCustomElements,
|
|
375
|
+
multi: true,
|
|
376
|
+
},
|
|
377
|
+
],
|
|
378
|
+
exports: [...DIRECTIVES],
|
|
379
|
+
}]
|
|
372
380
|
}] });
|
|
373
381
|
|
|
374
|
-
/*
|
|
375
|
-
* Public API Surface of components
|
|
382
|
+
/*
|
|
383
|
+
* Public API Surface of components
|
|
376
384
|
*/
|
|
377
385
|
|
|
378
|
-
/**
|
|
379
|
-
* Generated bundle index. Do not edit.
|
|
386
|
+
/**
|
|
387
|
+
* Generated bundle index. Do not edit.
|
|
380
388
|
*/
|
|
381
389
|
|
|
382
390
|
export { DIRECTIVES, PostAccordion, PostAccordionItem, PostAlert, PostCollapsible, PostComponentsModule, PostIcon, PostPopover, PostPopovercontainer, PostTabHeader, PostTabPanel, PostTabs, PostTooltip };
|