@swisspost/design-system-components-angular 10.0.0-next.54 → 10.0.0-next.55
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/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ declare class PostAccordion {
|
|
|
10
10
|
protected el: HTMLPostAccordionElement;
|
|
11
11
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostAccordion, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostAccordion, "post-accordion", never, { "headingLevel": { "alias": "headingLevel"; "required":
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostAccordion, "post-accordion", never, { "headingLevel": { "alias": "headingLevel"; "required": true; }; "multiple": { "alias": "multiple"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
14
14
|
}
|
|
15
15
|
declare interface PostAccordion extends Components.PostAccordion {
|
|
16
16
|
}
|
|
@@ -28,7 +28,7 @@ declare class PostAvatar {
|
|
|
28
28
|
protected el: HTMLPostAvatarElement;
|
|
29
29
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostAvatar, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostAvatar, "post-avatar", never, { "description": { "alias": "description"; "required": false; }; "email": { "alias": "email"; "required": false; }; "firstname": { "alias": "firstname"; "required":
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostAvatar, "post-avatar", never, { "description": { "alias": "description"; "required": false; }; "email": { "alias": "email"; "required": false; }; "firstname": { "alias": "firstname"; "required": true; }; "lastname": { "alias": "lastname"; "required": false; }; "userid": { "alias": "userid"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
32
32
|
}
|
|
33
33
|
declare interface PostAvatar extends Components.PostAvatar {
|
|
34
34
|
}
|
|
@@ -37,16 +37,17 @@ declare class PostBackToTop {
|
|
|
37
37
|
protected el: HTMLPostBackToTopElement;
|
|
38
38
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostBackToTop, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostBackToTop, "post-back-to-top", never, { "label": { "alias": "label"; "required":
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostBackToTop, "post-back-to-top", never, { "label": { "alias": "label"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
41
41
|
}
|
|
42
42
|
declare interface PostBackToTop extends Components.PostBackToTop {
|
|
43
43
|
}
|
|
44
44
|
declare class PostBanner {
|
|
45
45
|
protected z: NgZone;
|
|
46
46
|
protected el: HTMLPostBannerElement;
|
|
47
|
+
postDismissed: EventEmitter<CustomEvent<void>>;
|
|
47
48
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
48
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostBanner, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostBanner, "post-banner", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostBanner, "post-banner", never, { "type": { "alias": "type"; "required": false; }; }, { "postDismissed": "postDismissed"; }, never, ["*"], true, never>;
|
|
50
51
|
}
|
|
51
52
|
declare interface PostBanner extends Components.PostBanner {
|
|
52
53
|
/**
|
|
@@ -69,16 +70,24 @@ declare class PostBreadcrumbs {
|
|
|
69
70
|
protected el: HTMLPostBreadcrumbsElement;
|
|
70
71
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
71
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostBreadcrumbs, never>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostBreadcrumbs, "post-breadcrumbs", never, { "homeText": { "alias": "homeText"; "required":
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostBreadcrumbs, "post-breadcrumbs", never, { "homeText": { "alias": "homeText"; "required": true; }; "homeUrl": { "alias": "homeUrl"; "required": true; }; "label": { "alias": "label"; "required": true; }; "menuLabel": { "alias": "menuLabel"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
73
74
|
}
|
|
74
75
|
declare interface PostBreadcrumbs extends Components.PostBreadcrumbs {
|
|
75
76
|
}
|
|
76
77
|
declare class PostCardControl {
|
|
77
78
|
protected z: NgZone;
|
|
78
79
|
protected el: HTMLPostCardControlElement;
|
|
80
|
+
postInput: EventEmitter<CustomEvent<{
|
|
81
|
+
state: boolean;
|
|
82
|
+
value: string;
|
|
83
|
+
}>>;
|
|
84
|
+
postChange: EventEmitter<CustomEvent<{
|
|
85
|
+
state: boolean;
|
|
86
|
+
value: string;
|
|
87
|
+
}>>;
|
|
79
88
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
80
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostCardControl, never>;
|
|
81
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostCardControl, "post-card-control", never, { "checked": { "alias": "checked"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required":
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostCardControl, "post-card-control", never, { "checked": { "alias": "checked"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": true; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": true; }; "validity": { "alias": "validity"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "postInput": "postInput"; "postChange": "postChange"; }, never, ["*"], true, never>;
|
|
82
91
|
}
|
|
83
92
|
declare interface PostCardControl extends Components.PostCardControl {
|
|
84
93
|
/**
|
|
@@ -111,9 +120,10 @@ declare interface PostClosebutton extends Components.PostClosebutton {
|
|
|
111
120
|
declare class PostCollapsible {
|
|
112
121
|
protected z: NgZone;
|
|
113
122
|
protected el: HTMLPostCollapsibleElement;
|
|
123
|
+
postToggle: EventEmitter<CustomEvent<boolean>>;
|
|
114
124
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
115
125
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostCollapsible, never>;
|
|
116
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostCollapsible, "post-collapsible", never, { "collapsed": { "alias": "collapsed"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
126
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostCollapsible, "post-collapsible", never, { "collapsed": { "alias": "collapsed"; "required": false; }; }, { "postToggle": "postToggle"; }, never, ["*"], true, never>;
|
|
117
127
|
}
|
|
118
128
|
declare interface PostCollapsible extends Components.PostCollapsible {
|
|
119
129
|
/**
|
|
@@ -128,7 +138,7 @@ declare class PostCollapsibleTrigger {
|
|
|
128
138
|
protected el: HTMLPostCollapsibleTriggerElement;
|
|
129
139
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
130
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostCollapsibleTrigger, never>;
|
|
131
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostCollapsibleTrigger, "post-collapsible-trigger", never, { "for": { "alias": "for"; "required":
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostCollapsibleTrigger, "post-collapsible-trigger", never, { "for": { "alias": "for"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
132
142
|
}
|
|
133
143
|
declare interface PostCollapsibleTrigger extends Components.PostCollapsibleTrigger {
|
|
134
144
|
}
|
|
@@ -137,7 +147,7 @@ declare class PostFooter {
|
|
|
137
147
|
protected el: HTMLPostFooterElement;
|
|
138
148
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
139
149
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostFooter, never>;
|
|
140
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostFooter, "post-footer", never, { "label": { "alias": "label"; "required":
|
|
150
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostFooter, "post-footer", never, { "label": { "alias": "label"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
141
151
|
}
|
|
142
152
|
declare interface PostFooter extends Components.PostFooter {
|
|
143
153
|
}
|
|
@@ -155,16 +165,18 @@ declare class PostIcon {
|
|
|
155
165
|
protected el: HTMLPostIconElement;
|
|
156
166
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
157
167
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostIcon, never>;
|
|
158
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostIcon, "post-icon", never, { "animation": { "alias": "animation"; "required": false; }; "base": { "alias": "base"; "required": false; }; "flipH": { "alias": "flipH"; "required": false; }; "flipV": { "alias": "flipV"; "required": false; }; "name": { "alias": "name"; "required":
|
|
168
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostIcon, "post-icon", never, { "animation": { "alias": "animation"; "required": false; }; "base": { "alias": "base"; "required": false; }; "flipH": { "alias": "flipH"; "required": false; }; "flipV": { "alias": "flipV"; "required": false; }; "name": { "alias": "name"; "required": true; }; "rotate": { "alias": "rotate"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
159
169
|
}
|
|
160
170
|
declare interface PostIcon extends Components.PostIcon {
|
|
161
171
|
}
|
|
162
172
|
declare class PostLanguageOption {
|
|
163
173
|
protected z: NgZone;
|
|
164
174
|
protected el: HTMLPostLanguageOptionElement;
|
|
175
|
+
postChange: EventEmitter<CustomEvent<string>>;
|
|
176
|
+
postLanguageOptionInitiallyActive: EventEmitter<CustomEvent<string>>;
|
|
165
177
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
166
178
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostLanguageOption, never>;
|
|
167
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostLanguageOption, "post-language-option", never, { "active": { "alias": "active"; "required": false; }; "code": { "alias": "code"; "required":
|
|
179
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostLanguageOption, "post-language-option", never, { "active": { "alias": "active"; "required": false; }; "code": { "alias": "code"; "required": true; }; "name": { "alias": "name"; "required": false; }; "url": { "alias": "url"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "postChange": "postChange"; "postLanguageOptionInitiallyActive": "postLanguageOptionInitiallyActive"; }, never, ["*"], true, never>;
|
|
168
180
|
}
|
|
169
181
|
declare interface PostLanguageOption extends Components.PostLanguageOption {
|
|
170
182
|
/**
|
|
@@ -181,7 +193,7 @@ declare class PostLanguageSwitch {
|
|
|
181
193
|
protected el: HTMLPostLanguageSwitchElement;
|
|
182
194
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
183
195
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostLanguageSwitch, never>;
|
|
184
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostLanguageSwitch, "post-language-switch", never, { "caption": { "alias": "caption"; "required":
|
|
196
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostLanguageSwitch, "post-language-switch", never, { "caption": { "alias": "caption"; "required": true; }; "description": { "alias": "description"; "required": true; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
185
197
|
}
|
|
186
198
|
declare interface PostLanguageSwitch extends Components.PostLanguageSwitch {
|
|
187
199
|
}
|
|
@@ -233,9 +245,13 @@ declare interface PostMainnavigation extends Components.PostMainnavigation {
|
|
|
233
245
|
declare class PostMegadropdown {
|
|
234
246
|
protected z: NgZone;
|
|
235
247
|
protected el: HTMLPostMegadropdownElement;
|
|
248
|
+
postToggleMegadropdown: EventEmitter<CustomEvent<{
|
|
249
|
+
isVisible: boolean;
|
|
250
|
+
focusParent?: boolean;
|
|
251
|
+
}>>;
|
|
236
252
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
237
253
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostMegadropdown, never>;
|
|
238
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostMegadropdown, "post-megadropdown", never, {}, {}, never, ["*"], true, never>;
|
|
254
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostMegadropdown, "post-megadropdown", never, {}, { "postToggleMegadropdown": "postToggleMegadropdown"; }, never, ["*"], true, never>;
|
|
239
255
|
}
|
|
240
256
|
declare interface PostMegadropdown extends Components.PostMegadropdown {
|
|
241
257
|
/**
|
|
@@ -254,16 +270,17 @@ declare class PostMegadropdownTrigger {
|
|
|
254
270
|
protected el: HTMLPostMegadropdownTriggerElement;
|
|
255
271
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
256
272
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostMegadropdownTrigger, never>;
|
|
257
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostMegadropdownTrigger, "post-megadropdown-trigger", never, { "for": { "alias": "for"; "required":
|
|
273
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostMegadropdownTrigger, "post-megadropdown-trigger", never, { "for": { "alias": "for"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
258
274
|
}
|
|
259
275
|
declare interface PostMegadropdownTrigger extends Components.PostMegadropdownTrigger {
|
|
260
276
|
}
|
|
261
277
|
declare class PostMenu {
|
|
262
278
|
protected z: NgZone;
|
|
263
279
|
protected el: HTMLPostMenuElement;
|
|
280
|
+
toggleMenu: EventEmitter<CustomEvent<boolean>>;
|
|
264
281
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
265
282
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostMenu, never>;
|
|
266
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostMenu, "post-menu", never, { "label": { "alias": "label"; "required":
|
|
283
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostMenu, "post-menu", never, { "label": { "alias": "label"; "required": true; }; "placement": { "alias": "placement"; "required": false; }; }, { "toggleMenu": "toggleMenu"; }, never, ["*"], true, never>;
|
|
267
284
|
}
|
|
268
285
|
declare interface PostMenu extends Components.PostMenu {
|
|
269
286
|
/**
|
|
@@ -286,7 +303,7 @@ declare class PostMenuTrigger {
|
|
|
286
303
|
protected el: HTMLPostMenuTriggerElement;
|
|
287
304
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
288
305
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostMenuTrigger, never>;
|
|
289
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostMenuTrigger, "post-menu-trigger", never, { "for": { "alias": "for"; "required":
|
|
306
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostMenuTrigger, "post-menu-trigger", never, { "for": { "alias": "for"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
290
307
|
}
|
|
291
308
|
declare interface PostMenuTrigger extends Components.PostMenuTrigger {
|
|
292
309
|
}
|
|
@@ -295,7 +312,7 @@ declare class PostPopover {
|
|
|
295
312
|
protected el: HTMLPostPopoverElement;
|
|
296
313
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
297
314
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostPopover, never>;
|
|
298
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostPopover, "post-popover", never, { "arrow": { "alias": "arrow"; "required": false; }; "closeButtonCaption": { "alias": "closeButtonCaption"; "required":
|
|
315
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostPopover, "post-popover", never, { "arrow": { "alias": "arrow"; "required": false; }; "closeButtonCaption": { "alias": "closeButtonCaption"; "required": true; }; "placement": { "alias": "placement"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
299
316
|
}
|
|
300
317
|
declare interface PostPopover extends Components.PostPopover {
|
|
301
318
|
}
|
|
@@ -304,16 +321,29 @@ declare class PostPopoverTrigger {
|
|
|
304
321
|
protected el: HTMLPostPopoverTriggerElement;
|
|
305
322
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
306
323
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostPopoverTrigger, never>;
|
|
307
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostPopoverTrigger, "post-popover-trigger", never, { "for": { "alias": "for"; "required":
|
|
324
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostPopoverTrigger, "post-popover-trigger", never, { "for": { "alias": "for"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
308
325
|
}
|
|
309
326
|
declare interface PostPopoverTrigger extends Components.PostPopoverTrigger {
|
|
310
327
|
}
|
|
311
328
|
declare class PostPopovercontainer {
|
|
312
329
|
protected z: NgZone;
|
|
313
330
|
protected el: HTMLPostPopovercontainerElement;
|
|
331
|
+
postBeforeShow: EventEmitter<CustomEvent<{
|
|
332
|
+
first?: boolean;
|
|
333
|
+
}>>;
|
|
334
|
+
postShow: EventEmitter<CustomEvent<{
|
|
335
|
+
first?: boolean;
|
|
336
|
+
}>>;
|
|
337
|
+
postHide: EventEmitter<CustomEvent<any>>;
|
|
338
|
+
postBeforeToggle: EventEmitter<CustomEvent<{
|
|
339
|
+
willOpen: boolean;
|
|
340
|
+
}>>;
|
|
341
|
+
postToggle: EventEmitter<CustomEvent<{
|
|
342
|
+
isOpen: boolean;
|
|
343
|
+
}>>;
|
|
314
344
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
315
345
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostPopovercontainer, never>;
|
|
316
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostPopovercontainer, "post-popovercontainer", never, { "animation": { "alias": "animation"; "required": false; }; "arrow": { "alias": "arrow"; "required": false; }; "edgeGap": { "alias": "edgeGap"; "required": false; }; "manualClose": { "alias": "manualClose"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "safeSpace": { "alias": "safeSpace"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
346
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostPopovercontainer, "post-popovercontainer", never, { "animation": { "alias": "animation"; "required": false; }; "arrow": { "alias": "arrow"; "required": false; }; "edgeGap": { "alias": "edgeGap"; "required": false; }; "manualClose": { "alias": "manualClose"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "safeSpace": { "alias": "safeSpace"; "required": false; }; }, { "postBeforeShow": "postBeforeShow"; "postShow": "postShow"; "postHide": "postHide"; "postBeforeToggle": "postBeforeToggle"; "postToggle": "postToggle"; }, never, ["*"], true, never>;
|
|
317
347
|
}
|
|
318
348
|
declare interface PostPopovercontainer extends Components.PostPopovercontainer {
|
|
319
349
|
/**
|
|
@@ -348,9 +378,15 @@ declare interface PostPopovercontainer extends Components.PostPopovercontainer {
|
|
|
348
378
|
declare class PostRating {
|
|
349
379
|
protected z: NgZone;
|
|
350
380
|
protected el: HTMLPostRatingElement;
|
|
381
|
+
postInput: EventEmitter<CustomEvent<{
|
|
382
|
+
value: number;
|
|
383
|
+
}>>;
|
|
384
|
+
postChange: EventEmitter<CustomEvent<{
|
|
385
|
+
value: number;
|
|
386
|
+
}>>;
|
|
351
387
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
352
388
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostRating, never>;
|
|
353
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostRating, "post-rating", never, { "currentRating": { "alias": "currentRating"; "required": false; }; "label": { "alias": "label"; "required":
|
|
389
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostRating, "post-rating", never, { "currentRating": { "alias": "currentRating"; "required": false; }; "label": { "alias": "label"; "required": true; }; "readonly": { "alias": "readonly"; "required": false; }; "stars": { "alias": "stars"; "required": false; }; }, { "postInput": "postInput"; "postChange": "postChange"; }, never, ["*"], true, never>;
|
|
354
390
|
}
|
|
355
391
|
declare interface PostRating extends Components.PostRating {
|
|
356
392
|
/**
|
|
@@ -368,12 +404,30 @@ declare interface PostRating extends Components.PostRating {
|
|
|
368
404
|
value: number;
|
|
369
405
|
}>>;
|
|
370
406
|
}
|
|
407
|
+
declare class PostStepper {
|
|
408
|
+
protected z: NgZone;
|
|
409
|
+
protected el: HTMLPostStepperElement;
|
|
410
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
411
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PostStepper, never>;
|
|
412
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostStepper, "post-stepper", never, { "activeStepLabel": { "alias": "activeStepLabel"; "required": true; }; "completedLabel": { "alias": "completedLabel"; "required": true; }; "currentIndex": { "alias": "currentIndex"; "required": false; }; "currentLabel": { "alias": "currentLabel"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
413
|
+
}
|
|
414
|
+
declare interface PostStepper extends Components.PostStepper {
|
|
415
|
+
}
|
|
416
|
+
declare class PostStepperItem {
|
|
417
|
+
protected z: NgZone;
|
|
418
|
+
protected el: HTMLPostStepperItemElement;
|
|
419
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
420
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PostStepperItem, never>;
|
|
421
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostStepperItem, "post-stepper-item", never, {}, {}, never, ["*"], true, never>;
|
|
422
|
+
}
|
|
423
|
+
declare interface PostStepperItem extends Components.PostStepperItem {
|
|
424
|
+
}
|
|
371
425
|
declare class PostTabHeader {
|
|
372
426
|
protected z: NgZone;
|
|
373
427
|
protected el: HTMLPostTabHeaderElement;
|
|
374
428
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
375
429
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostTabHeader, never>;
|
|
376
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostTabHeader, "post-tab-header", never, { "panel": { "alias": "panel"; "required":
|
|
430
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostTabHeader, "post-tab-header", never, { "panel": { "alias": "panel"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
377
431
|
}
|
|
378
432
|
declare interface PostTabHeader extends Components.PostTabHeader {
|
|
379
433
|
}
|
|
@@ -382,16 +436,17 @@ declare class PostTabPanel {
|
|
|
382
436
|
protected el: HTMLPostTabPanelElement;
|
|
383
437
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
384
438
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostTabPanel, never>;
|
|
385
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostTabPanel, "post-tab-panel", never, { "name": { "alias": "name"; "required":
|
|
439
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostTabPanel, "post-tab-panel", never, { "name": { "alias": "name"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
386
440
|
}
|
|
387
441
|
declare interface PostTabPanel extends Components.PostTabPanel {
|
|
388
442
|
}
|
|
389
443
|
declare class PostTabs {
|
|
390
444
|
protected z: NgZone;
|
|
391
445
|
protected el: HTMLPostTabsElement;
|
|
446
|
+
postChange: EventEmitter<CustomEvent<string>>;
|
|
392
447
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
393
448
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostTabs, never>;
|
|
394
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostTabs, "post-tabs", never, { "activePanel": { "alias": "activePanel"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
449
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostTabs, "post-tabs", never, { "activePanel": { "alias": "activePanel"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; }, { "postChange": "postChange"; }, never, ["*"], true, never>;
|
|
395
450
|
}
|
|
396
451
|
declare interface PostTabs extends Components.PostTabs {
|
|
397
452
|
/**
|
|
@@ -423,12 +478,12 @@ declare class PostTooltipTrigger {
|
|
|
423
478
|
protected el: HTMLPostTooltipTriggerElement;
|
|
424
479
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
425
480
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostTooltipTrigger, never>;
|
|
426
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PostTooltipTrigger, "post-tooltip-trigger", never, { "delay": { "alias": "delay"; "required": false; }; "for": { "alias": "for"; "required":
|
|
481
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PostTooltipTrigger, "post-tooltip-trigger", never, { "delay": { "alias": "delay"; "required": false; }; "for": { "alias": "for"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
427
482
|
}
|
|
428
483
|
declare interface PostTooltipTrigger extends Components.PostTooltipTrigger {
|
|
429
484
|
}
|
|
430
485
|
|
|
431
|
-
declare const DIRECTIVES: (typeof PostAccordion | typeof PostAccordionItem | typeof PostAvatar | typeof PostBackToTop | typeof PostBanner | typeof PostBreadcrumbItem | typeof PostBreadcrumbs | typeof PostCardControl | typeof PostClosebutton | typeof PostCollapsible | typeof PostCollapsibleTrigger | typeof PostFooter | typeof PostHeader | typeof PostIcon | typeof PostLanguageOption | typeof PostLanguageSwitch | typeof PostLinkarea | typeof PostList | typeof PostListItem | typeof PostLogo | typeof PostMainnavigation | typeof PostMegadropdown | typeof PostMegadropdownTrigger | typeof PostMenu | typeof PostMenuItem | typeof PostMenuTrigger | typeof PostPopover | typeof PostPopoverTrigger | typeof PostPopovercontainer | typeof PostRating | typeof PostTabHeader | typeof PostTabPanel | typeof PostTabs | typeof PostTogglebutton | typeof PostTooltip | typeof PostTooltipTrigger)[];
|
|
486
|
+
declare const DIRECTIVES: (typeof PostAccordion | typeof PostAccordionItem | typeof PostAvatar | typeof PostBackToTop | typeof PostBanner | typeof PostBreadcrumbItem | typeof PostBreadcrumbs | typeof PostCardControl | typeof PostClosebutton | typeof PostCollapsible | typeof PostCollapsibleTrigger | typeof PostFooter | typeof PostHeader | typeof PostIcon | typeof PostLanguageOption | typeof PostLanguageSwitch | typeof PostLinkarea | typeof PostList | typeof PostListItem | typeof PostLogo | typeof PostMainnavigation | typeof PostMegadropdown | typeof PostMegadropdownTrigger | typeof PostMenu | typeof PostMenuItem | typeof PostMenuTrigger | typeof PostPopover | typeof PostPopoverTrigger | typeof PostPopovercontainer | typeof PostRating | typeof PostStepper | typeof PostStepperItem | typeof PostTabHeader | typeof PostTabPanel | typeof PostTabs | typeof PostTogglebutton | typeof PostTooltip | typeof PostTooltipTrigger)[];
|
|
432
487
|
|
|
433
488
|
declare class PostCardControlCheckboxValueAccessorDirective implements ControlValueAccessor {
|
|
434
489
|
protected el: ElementRef;
|
|
@@ -462,4 +517,4 @@ declare class PostCardControlRadioValueAccessorDirective implements ControlValue
|
|
|
462
517
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PostCardControlRadioValueAccessorDirective, "post-card-control[type=\"radio\"]", never, {}, {}, never, never, true, never>;
|
|
463
518
|
}
|
|
464
519
|
|
|
465
|
-
export { DIRECTIVES, PostAccordion, PostAccordionItem, PostAvatar, PostBackToTop, PostBanner, PostBreadcrumbItem, PostBreadcrumbs, PostCardControl, PostCardControlCheckboxValueAccessorDirective, PostCardControlRadioValueAccessorDirective, PostClosebutton, PostCollapsible, PostCollapsibleTrigger, PostFooter, PostHeader, PostIcon, PostLanguageOption, PostLanguageSwitch, PostLinkarea, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopoverTrigger, PostPopovercontainer, PostRating, PostTabHeader, PostTabPanel, PostTabs, PostTogglebutton, PostTooltip, PostTooltipTrigger, providePostComponents };
|
|
520
|
+
export { DIRECTIVES, PostAccordion, PostAccordionItem, PostAvatar, PostBackToTop, PostBanner, PostBreadcrumbItem, PostBreadcrumbs, PostCardControl, PostCardControlCheckboxValueAccessorDirective, PostCardControlRadioValueAccessorDirective, PostClosebutton, PostCollapsible, PostCollapsibleTrigger, PostFooter, PostHeader, PostIcon, PostLanguageOption, PostLanguageSwitch, PostLinkarea, PostList, PostListItem, PostLogo, PostMainnavigation, PostMegadropdown, PostMegadropdownTrigger, PostMenu, PostMenuItem, PostMenuTrigger, PostPopover, PostPopoverTrigger, PostPopovercontainer, PostRating, PostStepper, PostStepperItem, PostTabHeader, PostTabPanel, PostTabs, PostTogglebutton, PostTooltip, PostTooltipTrigger, providePostComponents };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swisspost/design-system-components-angular",
|
|
3
|
-
"version": "10.0.0-next.
|
|
3
|
+
"version": "10.0.0-next.55",
|
|
4
4
|
"description": "Swiss Post Design System - Angular Wrapper Components",
|
|
5
5
|
"author": "Swiss Post <design-system@post.ch>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@swisspost/design-system-components": "10.0.0-next.
|
|
31
|
+
"@swisspost/design-system-components": "10.0.0-next.55",
|
|
32
32
|
"tslib": "2.8.1"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
package/post-components.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:where(post-accordion,post-accordion-item,post-avatar,post-back-to-top,post-banner,post-breadcrumb-item,post-breadcrumbs,post-card-control,post-closebutton,post-collapsible,post-collapsible-trigger,post-footer,post-header,post-icon,post-language-option,post-language-switch,post-linkarea,post-list,post-list-item,post-logo,post-mainnavigation,post-megadropdown,post-megadropdown-trigger,post-menu,post-menu-item,post-menu-trigger,post-popover,post-popover-trigger,post-popovercontainer,post-rating,post-tab-header,post-tab-panel,post-tabs,post-togglebutton,post-tooltip,post-tooltip-trigger):not([data-hydrated],:defined){visibility:hidden}
|
|
1
|
+
:where(post-accordion,post-accordion-item,post-avatar,post-back-to-top,post-banner,post-breadcrumb-item,post-breadcrumbs,post-card-control,post-closebutton,post-collapsible,post-collapsible-trigger,post-footer,post-header,post-icon,post-language-option,post-language-switch,post-linkarea,post-list,post-list-item,post-logo,post-mainnavigation,post-megadropdown,post-megadropdown-trigger,post-menu,post-menu-item,post-menu-trigger,post-popover,post-popover-trigger,post-popovercontainer,post-rating,post-stepper,post-stepper-item,post-tab-header,post-tab-panel,post-tabs,post-togglebutton,post-tooltip,post-tooltip-trigger):not([data-hydrated],:defined){visibility:hidden}
|