-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomponents.d.ts
512 lines (512 loc) · 24.6 KB
/
components.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/* eslint-disable */
/* tslint:disable */
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/
import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
import { DropdownEvent, NavMainEntity } from "./models/header.model";
import { Event } from "@stencil/core";
import { IBreadcrumbItem, IBreadcrumbOverlay } from "./models/breadcrumbs.model";
import { StickynessOptions } from "./models/implementor.model";
import { Environment, ICustomConfig } from "./models/general.model";
import { IAvailableLanguage } from "./models/language.model";
export { DropdownEvent, NavMainEntity } from "./models/header.model";
export { Event } from "@stencil/core";
export { IBreadcrumbItem, IBreadcrumbOverlay } from "./models/breadcrumbs.model";
export { StickynessOptions } from "./models/implementor.model";
export { Environment, ICustomConfig } from "./models/general.model";
export { IAvailableLanguage } from "./models/language.model";
export namespace Components {
/**
* Trap the focus inside a specific container.
* @param active activate or deactivate the focus trap
*/
interface FocusTrap {
"active": boolean;
}
interface PostHeaderLogo {
}
interface PostKlpLoginWidget {
/**
* Override the logout-url provided by the portal config.
*/
"logoutUrl"?: string;
/**
* Sets the focus on the login button
*/
"setFocus": () => Promise<void>;
}
interface PostLanguageSwitch2 {
/**
* Visualization of the language switch. Possible values: 'dropdown' | 'list'
*/
"mode": 'dropdown' | 'list';
/**
* Open or close the language switch programatically
* @param force Boolean to force a state
* @returns Boolean indicating new state
*/
"toggleDropdown": (force?: boolean) => Promise<boolean>;
}
interface PostMainNavigation {
/**
* Open a specific flyout
* @param id Flyout ID
*/
"setActiveFlyout": (id: string | null) => Promise<void>;
/**
* Focus the main navigation toggle button
*/
"setFocus": () => Promise<void>;
/**
* Toggle the main navigation (only visible on mobile)
* @param force Force a state
* @returns Boolean indicating new state
*/
"toggleDropdown": (force?: boolean) => Promise<boolean>;
}
interface PostMetaNavigation {
/**
* Displays the meta-navigation in full-width.
*/
"fullWidth"?: boolean;
/**
* Displays the meta-navigation horihontally or vertically. Allowed values: 'horizontal' | 'vertical'
*/
"orientation": 'horizontal' | 'vertical';
}
interface PostSearch {
/**
* Sets the focus on the search button
*/
"setFocus": () => Promise<void>;
/**
* Toggle the dropdown and optionally force an open/closed state
* @param force Boolean to force open/closed state
* @returns Boolean indicating open state of the component
*/
"toggleDropdown": (force?: boolean | Event) => Promise<boolean>;
}
interface PostSkiplinks {
}
interface SwisspostInternetBreadcrumbs {
/**
* Add custom breadcrumb items to the end of the pre-configured list. Handy if your online service has it's own navigation structure.
*/
"customItems"?: string | IBreadcrumbItem[];
/**
* Hide all buttons.
*/
"hideButtons": boolean;
/**
* Toggle an overlay associated with a button.
* @param overlayId
*/
"toggleOverlayById": (overlayId: IBreadcrumbOverlay['id']) => Promise<void>;
}
interface SwisspostInternetFooter {
}
interface SwisspostInternetHeader {
/**
* Set the currently activated route. If there is a link matching this URL in the header, it will be highlighted. Will also highlight partly matching URLs. When set to auto, will use current location.href for comparison.
*/
"activeRoute"?: 'auto' | false | string;
/**
* DEPRECATED!: Define a proxy URL for the config fetch request. Will be removed in the next major version
*/
"configProxy"?: string;
/**
* Customize the header config loaded from the post portal.
*/
"customConfig"?: string | ICustomConfig;
/**
* Target environment. Choose 'int01' for local testing.
*/
"environment": Environment;
/**
* Displays the header at full width for full-screen applications
*/
"fullWidth"?: boolean;
/**
* Get the currently set language as a two letter string ("de", "fr" "it" or "en")
* @returns string
*/
"getCurrentLanguage": () => Promise<'de' | 'fr' | 'it' | 'en' | string>;
/**
* Initial language to be used. Overrides automatic language detection.
*/
"language"?: 'de' | 'fr' | 'it' | 'en';
/**
* The header uses this cookie to set the language. Disables automatic language detection.
*/
"languageCookieKey"?: string;
/**
* The header uses this local storage key to set the language. Disables automatic language selection.
*/
"languageLocalStorageKey"?: string;
/**
* Override the language switch links with custom URLs. Helpful when your application contains sub-pages, and you would like to stay on subpages when the user changes language.
*/
"languageSwitchOverrides"?: string | IAvailableLanguage[];
/**
* Toggle the login link (when logged out) or the user widget (when logged in).
*/
"login": boolean;
/**
* Override the logout-url provided by the portal config.
*/
"logoutUrl"?: string;
/**
* Toggle the meta navigation.
*/
"meta": boolean;
/**
* Online Services only: Add custom links to the special online service navigation entry
*/
"osFlyoutOverrides"?: string | NavMainEntity;
/**
* Your project id, previously passed as query string parameter serviceId.
*/
"project": string;
/**
* Toggle the search button.
*/
"search": boolean;
/**
* Toggle skiplinks. They help keyboard users to quickly jump to important sections of the page.
*/
"skiplinks": boolean;
/**
* Sticky behaviour of the header.
*/
"stickyness": StickynessOptions;
}
}
export interface PostLanguageSwitch2CustomEvent<T> extends CustomEvent<T> {
detail: T;
target: HTMLPostLanguageSwitch2Element;
}
export interface PostMainNavigationCustomEvent<T> extends CustomEvent<T> {
detail: T;
target: HTMLPostMainNavigationElement;
}
export interface PostSearchCustomEvent<T> extends CustomEvent<T> {
detail: T;
target: HTMLPostSearchElement;
}
export interface SwisspostInternetHeaderCustomEvent<T> extends CustomEvent<T> {
detail: T;
target: HTMLSwisspostInternetHeaderElement;
}
declare global {
/**
* Trap the focus inside a specific container.
* @param active activate or deactivate the focus trap
*/
interface HTMLFocusTrapElement extends Components.FocusTrap, HTMLStencilElement {
}
var HTMLFocusTrapElement: {
prototype: HTMLFocusTrapElement;
new (): HTMLFocusTrapElement;
};
interface HTMLPostHeaderLogoElement extends Components.PostHeaderLogo, HTMLStencilElement {
}
var HTMLPostHeaderLogoElement: {
prototype: HTMLPostHeaderLogoElement;
new (): HTMLPostHeaderLogoElement;
};
interface HTMLPostKlpLoginWidgetElement extends Components.PostKlpLoginWidget, HTMLStencilElement {
}
var HTMLPostKlpLoginWidgetElement: {
prototype: HTMLPostKlpLoginWidgetElement;
new (): HTMLPostKlpLoginWidgetElement;
};
interface HTMLPostLanguageSwitch2ElementEventMap {
"dropdownToggled": DropdownEvent;
"languageChanged": string;
}
interface HTMLPostLanguageSwitch2Element extends Components.PostLanguageSwitch2, HTMLStencilElement {
addEventListener<K extends keyof HTMLPostLanguageSwitch2ElementEventMap>(type: K, listener: (this: HTMLPostLanguageSwitch2Element, ev: PostLanguageSwitch2CustomEvent<HTMLPostLanguageSwitch2ElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
removeEventListener<K extends keyof HTMLPostLanguageSwitch2ElementEventMap>(type: K, listener: (this: HTMLPostLanguageSwitch2Element, ev: PostLanguageSwitch2CustomEvent<HTMLPostLanguageSwitch2ElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}
var HTMLPostLanguageSwitch2Element: {
prototype: HTMLPostLanguageSwitch2Element;
new (): HTMLPostLanguageSwitch2Element;
};
interface HTMLPostMainNavigationElementEventMap {
"dropdownToggled": DropdownEvent;
"flyoutToggled": string | null;
}
interface HTMLPostMainNavigationElement extends Components.PostMainNavigation, HTMLStencilElement {
addEventListener<K extends keyof HTMLPostMainNavigationElementEventMap>(type: K, listener: (this: HTMLPostMainNavigationElement, ev: PostMainNavigationCustomEvent<HTMLPostMainNavigationElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
removeEventListener<K extends keyof HTMLPostMainNavigationElementEventMap>(type: K, listener: (this: HTMLPostMainNavigationElement, ev: PostMainNavigationCustomEvent<HTMLPostMainNavigationElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}
var HTMLPostMainNavigationElement: {
prototype: HTMLPostMainNavigationElement;
new (): HTMLPostMainNavigationElement;
};
interface HTMLPostMetaNavigationElement extends Components.PostMetaNavigation, HTMLStencilElement {
}
var HTMLPostMetaNavigationElement: {
prototype: HTMLPostMetaNavigationElement;
new (): HTMLPostMetaNavigationElement;
};
interface HTMLPostSearchElementEventMap {
"dropdownToggled": DropdownEvent;
}
interface HTMLPostSearchElement extends Components.PostSearch, HTMLStencilElement {
addEventListener<K extends keyof HTMLPostSearchElementEventMap>(type: K, listener: (this: HTMLPostSearchElement, ev: PostSearchCustomEvent<HTMLPostSearchElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
removeEventListener<K extends keyof HTMLPostSearchElementEventMap>(type: K, listener: (this: HTMLPostSearchElement, ev: PostSearchCustomEvent<HTMLPostSearchElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}
var HTMLPostSearchElement: {
prototype: HTMLPostSearchElement;
new (): HTMLPostSearchElement;
};
interface HTMLPostSkiplinksElement extends Components.PostSkiplinks, HTMLStencilElement {
}
var HTMLPostSkiplinksElement: {
prototype: HTMLPostSkiplinksElement;
new (): HTMLPostSkiplinksElement;
};
interface HTMLSwisspostInternetBreadcrumbsElement extends Components.SwisspostInternetBreadcrumbs, HTMLStencilElement {
}
var HTMLSwisspostInternetBreadcrumbsElement: {
prototype: HTMLSwisspostInternetBreadcrumbsElement;
new (): HTMLSwisspostInternetBreadcrumbsElement;
};
interface HTMLSwisspostInternetFooterElement extends Components.SwisspostInternetFooter, HTMLStencilElement {
}
var HTMLSwisspostInternetFooterElement: {
prototype: HTMLSwisspostInternetFooterElement;
new (): HTMLSwisspostInternetFooterElement;
};
interface HTMLSwisspostInternetHeaderElementEventMap {
"headerLoaded": void;
}
interface HTMLSwisspostInternetHeaderElement extends Components.SwisspostInternetHeader, HTMLStencilElement {
addEventListener<K extends keyof HTMLSwisspostInternetHeaderElementEventMap>(type: K, listener: (this: HTMLSwisspostInternetHeaderElement, ev: SwisspostInternetHeaderCustomEvent<HTMLSwisspostInternetHeaderElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
removeEventListener<K extends keyof HTMLSwisspostInternetHeaderElementEventMap>(type: K, listener: (this: HTMLSwisspostInternetHeaderElement, ev: SwisspostInternetHeaderCustomEvent<HTMLSwisspostInternetHeaderElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}
var HTMLSwisspostInternetHeaderElement: {
prototype: HTMLSwisspostInternetHeaderElement;
new (): HTMLSwisspostInternetHeaderElement;
};
interface HTMLElementTagNameMap {
"focus-trap": HTMLFocusTrapElement;
"post-header-logo": HTMLPostHeaderLogoElement;
"post-klp-login-widget": HTMLPostKlpLoginWidgetElement;
"post-language-switch-2": HTMLPostLanguageSwitch2Element;
"post-main-navigation": HTMLPostMainNavigationElement;
"post-meta-navigation": HTMLPostMetaNavigationElement;
"post-search": HTMLPostSearchElement;
"post-skiplinks": HTMLPostSkiplinksElement;
"swisspost-internet-breadcrumbs": HTMLSwisspostInternetBreadcrumbsElement;
"swisspost-internet-footer": HTMLSwisspostInternetFooterElement;
"swisspost-internet-header": HTMLSwisspostInternetHeaderElement;
}
}
declare namespace LocalJSX {
/**
* Trap the focus inside a specific container.
* @param active activate or deactivate the focus trap
*/
interface FocusTrap {
"active"?: boolean;
}
interface PostHeaderLogo {
}
interface PostKlpLoginWidget {
/**
* Override the logout-url provided by the portal config.
*/
"logoutUrl"?: string;
}
interface PostLanguageSwitch2 {
/**
* Visualization of the language switch. Possible values: 'dropdown' | 'list'
*/
"mode"?: 'dropdown' | 'list';
/**
* Fires when the dropdown has been toggled.
*/
"onDropdownToggled"?: (event: PostLanguageSwitch2CustomEvent<DropdownEvent>) => void;
/**
* Fires when the language has been changed.
*/
"onLanguageChanged"?: (event: PostLanguageSwitch2CustomEvent<string>) => void;
}
interface PostMainNavigation {
/**
* Fires when the dropdown has been toggled.
*/
"onDropdownToggled"?: (event: PostMainNavigationCustomEvent<DropdownEvent>) => void;
/**
* Fires when the flyout has been toggled.
*/
"onFlyoutToggled"?: (event: PostMainNavigationCustomEvent<string | null>) => void;
}
interface PostMetaNavigation {
/**
* Displays the meta-navigation in full-width.
*/
"fullWidth"?: boolean;
/**
* Displays the meta-navigation horihontally or vertically. Allowed values: 'horizontal' | 'vertical'
*/
"orientation"?: 'horizontal' | 'vertical';
}
interface PostSearch {
/**
* Fires when the dropdown has been toggled.
*/
"onDropdownToggled"?: (event: PostSearchCustomEvent<DropdownEvent>) => void;
}
interface PostSkiplinks {
}
interface SwisspostInternetBreadcrumbs {
/**
* Add custom breadcrumb items to the end of the pre-configured list. Handy if your online service has it's own navigation structure.
*/
"customItems"?: string | IBreadcrumbItem[];
/**
* Hide all buttons.
*/
"hideButtons"?: boolean;
}
interface SwisspostInternetFooter {
}
interface SwisspostInternetHeader {
/**
* Set the currently activated route. If there is a link matching this URL in the header, it will be highlighted. Will also highlight partly matching URLs. When set to auto, will use current location.href for comparison.
*/
"activeRoute"?: 'auto' | false | string;
/**
* DEPRECATED!: Define a proxy URL for the config fetch request. Will be removed in the next major version
*/
"configProxy"?: string;
/**
* Customize the header config loaded from the post portal.
*/
"customConfig"?: string | ICustomConfig;
/**
* Target environment. Choose 'int01' for local testing.
*/
"environment"?: Environment;
/**
* Displays the header at full width for full-screen applications
*/
"fullWidth"?: boolean;
/**
* Initial language to be used. Overrides automatic language detection.
*/
"language"?: 'de' | 'fr' | 'it' | 'en';
/**
* The header uses this cookie to set the language. Disables automatic language detection.
*/
"languageCookieKey"?: string;
/**
* The header uses this local storage key to set the language. Disables automatic language selection.
*/
"languageLocalStorageKey"?: string;
/**
* Override the language switch links with custom URLs. Helpful when your application contains sub-pages, and you would like to stay on subpages when the user changes language.
*/
"languageSwitchOverrides"?: string | IAvailableLanguage[];
/**
* Toggle the login link (when logged out) or the user widget (when logged in).
*/
"login"?: boolean;
/**
* Override the logout-url provided by the portal config.
*/
"logoutUrl"?: string;
/**
* Toggle the meta navigation.
*/
"meta"?: boolean;
/**
* Fires when the header has been rendered to the page.
*/
"onHeaderLoaded"?: (event: SwisspostInternetHeaderCustomEvent<void>) => void;
/**
* Online Services only: Add custom links to the special online service navigation entry
*/
"osFlyoutOverrides"?: string | NavMainEntity;
/**
* Your project id, previously passed as query string parameter serviceId.
*/
"project"?: string;
/**
* Toggle the search button.
*/
"search"?: boolean;
/**
* Toggle skiplinks. They help keyboard users to quickly jump to important sections of the page.
*/
"skiplinks"?: boolean;
/**
* Sticky behaviour of the header.
*/
"stickyness"?: StickynessOptions;
}
interface IntrinsicElements {
"focus-trap": FocusTrap;
"post-header-logo": PostHeaderLogo;
"post-klp-login-widget": PostKlpLoginWidget;
"post-language-switch-2": PostLanguageSwitch2;
"post-main-navigation": PostMainNavigation;
"post-meta-navigation": PostMetaNavigation;
"post-search": PostSearch;
"post-skiplinks": PostSkiplinks;
"swisspost-internet-breadcrumbs": SwisspostInternetBreadcrumbs;
"swisspost-internet-footer": SwisspostInternetFooter;
"swisspost-internet-header": SwisspostInternetHeader;
}
}
export { LocalJSX as JSX };
declare module "@stencil/core" {
export namespace JSX {
interface IntrinsicElements {
/**
* Trap the focus inside a specific container.
* @param active activate or deactivate the focus trap
*/
"focus-trap": LocalJSX.FocusTrap & JSXBase.HTMLAttributes<HTMLFocusTrapElement>;
"post-header-logo": LocalJSX.PostHeaderLogo & JSXBase.HTMLAttributes<HTMLPostHeaderLogoElement>;
"post-klp-login-widget": LocalJSX.PostKlpLoginWidget & JSXBase.HTMLAttributes<HTMLPostKlpLoginWidgetElement>;
"post-language-switch-2": LocalJSX.PostLanguageSwitch2 & JSXBase.HTMLAttributes<HTMLPostLanguageSwitch2Element>;
"post-main-navigation": LocalJSX.PostMainNavigation & JSXBase.HTMLAttributes<HTMLPostMainNavigationElement>;
"post-meta-navigation": LocalJSX.PostMetaNavigation & JSXBase.HTMLAttributes<HTMLPostMetaNavigationElement>;
"post-search": LocalJSX.PostSearch & JSXBase.HTMLAttributes<HTMLPostSearchElement>;
"post-skiplinks": LocalJSX.PostSkiplinks & JSXBase.HTMLAttributes<HTMLPostSkiplinksElement>;
"swisspost-internet-breadcrumbs": LocalJSX.SwisspostInternetBreadcrumbs & JSXBase.HTMLAttributes<HTMLSwisspostInternetBreadcrumbsElement>;
"swisspost-internet-footer": LocalJSX.SwisspostInternetFooter & JSXBase.HTMLAttributes<HTMLSwisspostInternetFooterElement>;
"swisspost-internet-header": LocalJSX.SwisspostInternetHeader & JSXBase.HTMLAttributes<HTMLSwisspostInternetHeaderElement>;
}
}
}