Newer
Older
/* 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';
ColorVariant,
GridAlignVariants,
GridColumns,
GridColumnsLg,
GridColumnsSm,
HeadingSectionVariants,
HeadingVarians,

Ekaterina Kondareva
committed
KeyHighlightVariants,

Ekaterina Kondareva
committed
LinkBoxVariants,
ProcessFlowBoxVariants,
import {Breadcrumb} from './components/hy-breadcrumbs/hy-breadcrumbs';
import {TagValue} from './components/courses/hy-content-list-item/hy-content-list-item';
import {DesktopLinks} from './components/site-header/hy-desktop-menu-links/hy-desktop-menu-links';
import {IDropdownItem} from './components/hy-dropdown/hy-dropdown';
import {IFilterGroupFilter} from './components/hy-filter-group/hy-filter-group';
import {FooterBaseLinks, FooterBaseSome} from './components/footer/hy-footer-base/hy-footer-base';
import {FooterInfoLinks} from './components/footer/hy-footer-info/hy-footer-info';
import {KeyFigureValue} from './components/hy-key-figure-group/hy-key-figure-group';
import {KeyHighlightValue} from './components/hy-key-highlight-group/hy-key-highlight-group';
import {ProcessFlowValue} from './components/hy-large-process-flow/hy-large-process-flow';
import {PhaseValue} from './components/hy-large-process-flow-phase/hy-large-process-flow-phase';
import {LinkBox} from './components/link-box-list/link-box-list';
import {CtaLinkValue} from './components/hy-link-list/hy-link-list';
import {AdditionalInfo, RelatedLink} from './components/hy-list-item/hy-list-item';
import {MenuLanguage} from './components/navigation/menu-language/menu-language';
import {ComponentLabels} from './components/site-header/site-header';
import {ProcessFlowBoxValue} from './components/process/process';
import {ShortcutLinkValue} from './components/hy-shortcuts/hy-shortcuts';
import {DesktopLinks as DesktopLinks1} from './components/site-header/site-header';
export namespace Components {
interface ColorBox {}
interface HyAccordionContainer {
accordionid?: string;
}
interface HyAccordionItem {
accordiontitle?: string;

Ekaterina Kondareva
committed
interface HyAdjacentImageText {

Ekaterina Kondareva
committed
imageAlt: string;
imageUrl: string;
mainUrl?: string;
mainUrl2?: string;
mainUrlAriaLabel?: string;
mainUrlAriaLabel2?: string;
mainUrlIsExternal: boolean;
mainUrlIsExternal2: boolean;
mainUrlTitle?: string;
mainUrlTitle2?: string;
textDescription: string;
textTitle?: string;
}
variant: 'primary' | 'warn' | 'success' | 'disabled';
scLabel?: string;
textDescription: string;
textTitle?: string;
url?: string;
urlTitle?: string;
}
/**
* Top margin to be added to all but first element. Amount of rem:s
*/
margin: number;
}
interface HyBox {
/**
* value for vertical alignment (align-items)
*/
align: string;
/**
* background color. Must use one of css variable names from color tokens
*/
/**
* fixed height for the container, useful for extra spacing containers
*/
h?: number;
/**
* Value for horisontal alignment (justify-content)
*/
justify: string;
/**
* All sides margin value in rems. Responsive when given Comma separated values.
*/
m?: string;
/**
* Bottom margin in rems. Responsive when given Comma separated values.
*/
mb?: string;
/**
* Left margin in rems. Responsive when given Comma separated values.
*/
ml?: string;
/**
* Right margin in rems. Responsive when given Comma separated values.
*/
mr?: string;
/**
* Top margin in rems. Responsive when given Comma separated values.
*/
mt?: string;
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
/**
* All sides padding value in rems. Responsive when given Comma separated values.
*/
p?: string;
/**
* Bottom padding in rems. Responsive when given Comma separated values.
*/
pb?: string;
/**
* Left padding in rems. Responsive when given Comma separated values.
*/
pl?: string;
/**
* Right padding in rems. Responsive when given Comma separated values.
*/
pr?: string;
/**
* Top padding in rems. Responsive when given Comma separated values.
*/
pt?: string;
/**
* Responsive width. Must be a comma separated string of percentage values for breakpoints. First item is the default value.
*/
width: string;
}
interface HyBoxContainer {
/**
* Should the container have a max width of 90rems
*/
maxWidth: boolean;
/**
* Should the items wrap to new rows.
*/
wrap: boolean;
}
interface HyBreadcrumbs {
dataItems: Breadcrumb[] | string;
headerstyle: string;
variant: BreadcrumbVariants;
}
interface HyButton {
/**
* Aria label for the element
*/
ariaLabel?: string;
/**
* Custom classes added to button element.
*/
buttonClasses: string;
/**
* Button type. Defaults to submit.
*/
buttonType: string;
*/
iconRight?: string;
/**
* Use only with url property. Sets the
*/
isExternal?: boolean;
/**
* Size (height) of the button. Normal: 44px, large: 48px
*/
/**
* deprecated, use disabled boolean value
*/
/**
* Set this on if an anchor tag is required instead of a button.
*/
url?: string;
/**
* The element variant. Defaults to primary
*/
variant: ButtonVariants;
}
interface HyCheckbox {
/**
* Checked attribute
*/
checkboxChecked: boolean;
/**
* Unique id for checkbox element
*/
checkboxId: string | number;
/**
* Label for input to describe
*/
checkboxLabel: string;
/**
* Value for input element
*/
checkboxValue: string | number;
/**
* Variant to deifne what style of checkbox to use
*/
variant: CheckboxVariants;
dataItems: string;
linkLabel: string;
}
interface HyContentListItem {
courseCode?: string;
courseCredits?: string;
courseEndDate?: string;
courseEnrollmentLink?: string;
courseLinkLabel?: string;
courseName?: string;
druid
committed
courseOrganisation?: string;
courseStartDate?: string;
courseStudyFormat?: string;
courseTags: TagValue[] | string;
courseTeachingLanguage?: string;
variant: CourseVariants;
}

Ekaterina Kondareva
committed
interface HyCtaButton {
Ekaterina Kondareva
committed
scLabel?: string;

Ekaterina Kondareva
committed
interface HyCtaLink {
isExternal: boolean;
linkContent: string;
scLabel?: string;
url?: string;

Ekaterina Kondareva
committed
}
interface HyDesktopMenuLinks {
dataDesktopLinks: DesktopLinks[] | string;
}
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
interface HyDropdown {
dropdownLabel: string;
dropdownOptions: IDropdownItem[] | string;
}
interface HyDropdownPanel {
isHidden: boolean;
}
interface HyDropdownPanelItem {
dropdownItemId: string | number;
dropdownItemLabel: string;
dropdownItemValue: string | number;
isLast?: boolean;
}
interface HyFilterGroup {
filterGroupFilters: IFilterGroupFilter[] | string;
filterGroupLabel: string;
}
interface HyFilterGroupItem {
filterGroupItemId: string | number;
filterGroupItemLabel: string;
}
interface HyFilterVisibilityTool {
filterVisibilityToolType: 'toggle' | 'reset';
}
interface HyFilterVisibilityToolReset {}
interface HyFilterVisibilityToolToggle {}
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
interface HyFooter {}
interface HyFooterAction {
/**
* Up button label.
*/
upButtonLabel: string;
/**
* String of text for updated text to be displayed.
*/
updatedText: string;
}
interface HyFooterBase {
/**
* Link item color
*/
color: FooterLinkItemColor;
/**
* Copyright text
*/
copyrightText: string;
/**
* Footer links to be displayed
*/
dataFooterBaseLinks: FooterBaseLinks[] | string;
/**
* Footer some links
*/
dataFooterBaseSome: FooterBaseSome[] | string;
/**
* Logo label
*/
logoLabel?: string;
/**
* Logo url
*/
logoUrl?: string;
/**
* Logo size
*/
size: SiteLogoSize;
/**
* Label for some links
*/
someLabel?: string;
}
interface HyFooterInfo {
/**
* Data for links to be displayed.
*/
dataFooterInfoLinks: FooterInfoLinks[] | string;
/**
* Content area link button text.
*/
linkText: string;
/**
* Content area link button url.
*/
linkUrl: string;
/**
* Content area text.
*/
textDescription: string;
/**
* Content area title.
*/
textTitle: string;
}
interface HyFooterLinkItem {
color: FooterLinkItemColor;
isMobile: boolean;
items: Array<any>;
label: string;
mainLink: boolean;
url: string;
interface HyGridContainer {}
interface HyGridItem {
columns: GridColumns;
columnslg: GridColumnsLg;
columnssm: GridColumnsSm;
contentalign: GridAlignVariants;
}
interface HyGridRow {}
interface HyHeading {
interface HyHero {
colorVariant: HeroColorVariant;
description: string;
scLabel?: string;
url: string;
urlTitle: string;
}
interface HyIcon {
fill: string;
icon: string;
size: number;
}
interface HyImage {
aspectRatioHeight: number;
aspectRatioWidth: number;
caption: string;
imageAlt: string;
imageUrl?: string;
}
interface HyIngress {
headerstyle: string;
}
reversed: boolean;
scLabel?: string;
textDescription: string;
textTitle?: string;
url?: string;
urlTitle?: string;
variant: IntroductionBgColors;
}

Ekaterina Kondareva
committed
interface HyKeyFigure {
description: string;
heading: string;
variant: KeyHighlightVariants;
}
interface HyKeyFigureGroup {
dataItems: KeyFigureValue[] | string;

Ekaterina Kondareva
committed
}
interface HyKeyHighlight {
description: string;
heading: string;
variant: KeyHighlightVariants;
}
interface HyKeyHighlightGroup {
dataItems: KeyHighlightValue[] | string;

Ekaterina Kondareva
committed
variant: KeyHighlightVariants;
}
interface HyLargeProcessFlow {
dataItems: ProcessFlowValue[] | string;
}
interface HyLargeProcessFlowPhase {
dataItems: PhaseValue[] | string;
}
interface HyLink {
isExternal: boolean;
linkContent: string;
Ekaterina Kondareva
committed
scLabel?: string;
url?: string;
variant: LinkVariants;
}
interface HyLinkBox {
imageAlt: string;
imageUrl: string;
isExternal: boolean;
textDescription: string;
textTitle?: string;
url?: string;

Ekaterina Kondareva
committed
variant: LinkBoxVariants;
}
interface HyLinkBoxList {
dataItems: LinkBox[] | string;

Ekaterina Kondareva
committed
variant: LinkBoxVariants;
interface HyLinkList {
dataItems: CtaLinkValue[] | string;
interface HyListItem {
additionalInfo?: AdditionalInfo[] | string;
headerstyle: string;
imageLabel?: string;
isExternal: boolean;
itemImageAlt?: string;
itemImageUrl?: string;
itemTitle?: string;
itemType?: string;
outGoingUrlLabel?: string;
relatedLinks?: RelatedLink[] | string;
relatedLinksBlockTitle?: string;
scLabel?: string;
url?: string;
Ekaterina Kondareva
committed
interface HyMainContentWrapper {}
interface HyMenu {
dataMenuDonate: string;
dataMenuLanguage: string;
isDemo: boolean;
labelFrontPage: string;
logoLabel: string;
logoUrl: string;
menuButtonBreadcrumbReturn: string;
Markus Kalijärvi
committed
menuButtonSubmenuExpand: string;
menuIsOpen: boolean;
menuType: MenuType;
interface HyMenuItem {
ariaExpanded: boolean;
depth: number;
hasChildren: boolean;
inActiveTrail: boolean;
isActive: boolean;
isDemo: boolean;
menuButtonSubmenuExpand?: string;
menuItemAlternative: boolean;
menuLinkId: string;
menuType: MenuType;
parentAsHeading: string;
parentExpanded: boolean;
url: string;
interface HyMenuItemSidebar {
ariaExpanded: boolean;
depth: number;
hasChildren: boolean;
inActiveTrail: boolean;
isActive: boolean;
isActiveChild?: boolean;
isDemo: boolean;
isHeading: boolean;
isParent: boolean;
label: string;
menuButtonSubmenuExpand?: string;
menuIsOpen: boolean;
menuItemAlternative: boolean;
menuLinkId: string;
menuType: MenuType;
parentAsHeading: string;
parentExpanded: boolean;
url: string;
}
interface HyMenuLanguage {
dataMenuLanguage: MenuLanguage[] | string;
isMobile: boolean;
labels?: ComponentLabels[] | string;
}
interface HyMenuLanguageItem {
abbr: string;
isActive: boolean;
isMobile: boolean;
label: string;
langCode: string;
url: string;
}
interface HyMenuLevelContainer {
activeTrailTriggered: boolean;
depth: number;
/**
* label for front page for panel first parent
*/
frontLabel: string;
/**
* Url to front page for panel first parent
*/
frontUrl: string;
labelFrontPage?: string;
Markus Kalijärvi
committed
menuButtonSubmenuExpand?: string;
menuType: MenuType;
triggerItem: string;
}
interface HyMenuMobileBreadcrumb {
bid: string;
isFirst: boolean;
label: string;
labelBack: string;
labelFrontPage: string;
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
interface HyMenuSidebar {
/**
* Isdemo
*/
isDemo: boolean;
/**
* Logo label
*/
logoLabel?: string;
/**
* Url for logo.
*/
logoUrl?: string;
/**
* Is menu open boolean.
*/
menuIsOpen: boolean;
/**
* Menu type. Defaults to sidenav.
*/
menuType: MenuType;
/**
* Previous panel to be toggled to keep track.
*/
minHeight: any;
/**
* Upper menus panel boolean.
*/
panelOpen: boolean;
/**
* Label for panel toggle button.
*/
panelToggleAriaLabel?: string;
/**
* Label for panel toggle button.
*/
panelToggleCloseAriaLabel?: string;
/**
* Label for panel toggle button.
*/
panelToggleCloseLabel?: string;
/**
* Label for panel toggle button.
*/
panelToggleLabel?: string;
/**
* Logo size
*/
size: SiteLogoSize;
}
interface HyPager {}
interface HyPagerItem {
itemLabel?: string;
itemUrl?: string;
scAriaLabel?: string;
variant: PaginationItemVariants;
}
Ekaterina Kondareva
committed
interface HyParagraphText {
headerstyle: string;

Ekaterina Kondareva
committed
placement: string;
Ekaterina Kondareva
committed
variant: string;
}
interface HyPersonCard {
categoryTitle?: string;
department?: string;
email?: string;
field?: string;
firstName?: string;
imageAlt?: string;
imageUrl?: string;
isExternal: boolean;
lastName?: string;
phone?: string;
positionTitle?: string;
scLabel?: string;
url?: string;
variant: PersonCardVariants;
}
interface HyProcess {
dataItems: ProcessFlowBoxValue[] | string;
}
interface HyProcessFlowBox {
boxDescription: string;
boxNumber: string;
boxTitle: string;
intermediateStepTitle: string;
numberTerm: string;
stepState: ProcessFlowBoxStepStates;
variant: ProcessFlowBoxVariants;
}
imageUrl?: string;
textTitle?: string;
}
/**
* justify-content property.
*/
/**
* justify-content property.
*/
/**
* Left margin to be added to adjacent items.
*/
interface HySearchField {
inputId: string;
isLabelHidden?: boolean;
label: string;
}
interface HyShortcuts {
dataItems: ShortcutLinkValue[] | string;
dataDesktopLinks: DesktopLinks[] | string;
dataMenuDonate: string;
dataMenuLanguage: string;
Markus Kalijärvi
committed
dataSiteHeaderLabels: string;
logoLabel?: string;
logoUrl?: string;
menuLabel: string;
menuLabelClose?: string;
menuLabelOpen?: string;
menuType: MenuType;
color: ColorVariant;
size: SiteLogoSize;
url?: string;
}
interface HySiteSearch {
color: ColorVariant;
isAlternative: boolean;
showLabel: boolean;
size: number;
tabId?: string;
tabListLabel: string;
}
interface HyTabsItem {
tabTitle?: string;
}
interface HyTwoColumns {
reversed: boolean;
}
interface HyUserLoginForm {
logoLabel?: string;
logoUrl?: string;
}
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
interface HyVideo {
/**
* Context label
*/
contextLabel: string;
/**
* Should context label be visible
*/
contextLabelVisible: boolean;
/**
* Date added date as string
*/
dateAdded: string;
/**
* Label for date added
*/
dateAddedLabel: string;
/**
* Duration number
*/
duration: string;
/**
* Label for duration number
*/
durationLabel: string;
headerstyle: string;
/**
* Use horizontal layout where metadata is on side
*/
horizontal: boolean;
/**
* Url to video, used with preview image
*/
linkToVideo: string;
/**
* Label for play button if preview image is provided
*/
playButtonLabel: string;
/**
* Should play button be visible
*/
playButtonVisible: boolean;
/**
* Preview image url
*/
previewImageUrl: string;
/**
* Video description
*/
videoDescription: string;
/**
* Video title
*/
videoTitle: string;
/**
* Views count number
*/
views: string;
/**
* Label for views number
*/
viewsLabel: string;
}
interface HTMLColorBoxElement extends Components.ColorBox, HTMLStencilElement {}
var HTMLColorBoxElement: {
prototype: HTMLColorBoxElement;
new (): HTMLColorBoxElement;
};
interface HTMLHyAccordionContainerElement extends Components.HyAccordionContainer, HTMLStencilElement {}
var HTMLHyAccordionContainerElement: {
prototype: HTMLHyAccordionContainerElement;
new (): HTMLHyAccordionContainerElement;
};
interface HTMLHyAccordionItemElement extends Components.HyAccordionItem, HTMLStencilElement {}
var HTMLHyAccordionItemElement: {
prototype: HTMLHyAccordionItemElement;
new (): HTMLHyAccordionItemElement;
};
interface HTMLHyAdjacentImageTextElement extends Components.HyAdjacentImageText, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyAdjacentImageTextElement: {
prototype: HTMLHyAdjacentImageTextElement;
new (): HTMLHyAdjacentImageTextElement;
};
interface HTMLHyBadgeElement extends Components.HyBadge, HTMLStencilElement {}
var HTMLHyBadgeElement: {
prototype: HTMLHyBadgeElement;
new (): HTMLHyBadgeElement;
};
interface HTMLHyBannerElement extends Components.HyBanner, HTMLStencilElement {}
var HTMLHyBannerElement: {
prototype: HTMLHyBannerElement;
new (): HTMLHyBannerElement;
};
interface HTMLHyBaselineElement extends Components.HyBaseline, HTMLStencilElement {}
var HTMLHyBaselineElement: {
prototype: HTMLHyBaselineElement;
new (): HTMLHyBaselineElement;
};
interface HTMLHyBoxElement extends Components.HyBox, HTMLStencilElement {}
var HTMLHyBoxElement: {
prototype: HTMLHyBoxElement;
new (): HTMLHyBoxElement;
};
interface HTMLHyBoxContainerElement extends Components.HyBoxContainer, HTMLStencilElement {}
var HTMLHyBoxContainerElement: {
prototype: HTMLHyBoxContainerElement;
new (): HTMLHyBoxContainerElement;
};
interface HTMLHyBreadcrumbsElement extends Components.HyBreadcrumbs, HTMLStencilElement {}
var HTMLHyBreadcrumbsElement: {
prototype: HTMLHyBreadcrumbsElement;
new (): HTMLHyBreadcrumbsElement;
};
interface HTMLHyButtonElement extends Components.HyButton, HTMLStencilElement {}
var HTMLHyButtonElement: {
prototype: HTMLHyButtonElement;
new (): HTMLHyButtonElement;
};
interface HTMLHyCheckboxElement extends Components.HyCheckbox, HTMLStencilElement {}
var HTMLHyCheckboxElement: {
prototype: HTMLHyCheckboxElement;
new (): HTMLHyCheckboxElement;
};
interface HTMLHyContentListElement extends Components.HyContentList, HTMLStencilElement {}
var HTMLHyContentListElement: {
prototype: HTMLHyContentListElement;
new (): HTMLHyContentListElement;
};
interface HTMLHyContentListItemElement extends Components.HyContentListItem, HTMLStencilElement {}
var HTMLHyContentListItemElement: {
prototype: HTMLHyContentListItemElement;
new (): HTMLHyContentListItemElement;
};
interface HTMLHyCtaButtonElement extends Components.HyCtaButton, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyCtaButtonElement: {
prototype: HTMLHyCtaButtonElement;
new (): HTMLHyCtaButtonElement;
};
interface HTMLHyCtaLinkElement extends Components.HyCtaLink, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyCtaLinkElement: {
prototype: HTMLHyCtaLinkElement;
new (): HTMLHyCtaLinkElement;
interface HTMLHyDesktopMenuLinksElement extends Components.HyDesktopMenuLinks, HTMLStencilElement {}
var HTMLHyDesktopMenuLinksElement: {
prototype: HTMLHyDesktopMenuLinksElement;
new (): HTMLHyDesktopMenuLinksElement;
};
interface HTMLHyDocsContainerElement extends Components.HyDocsContainer, HTMLStencilElement {}
var HTMLHyDocsContainerElement: {
prototype: HTMLHyDocsContainerElement;
new (): HTMLHyDocsContainerElement;
};
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
interface HTMLHyDropdownElement extends Components.HyDropdown, HTMLStencilElement {}
var HTMLHyDropdownElement: {
prototype: HTMLHyDropdownElement;
new (): HTMLHyDropdownElement;
};
interface HTMLHyDropdownPanelElement extends Components.HyDropdownPanel, HTMLStencilElement {}
var HTMLHyDropdownPanelElement: {
prototype: HTMLHyDropdownPanelElement;
new (): HTMLHyDropdownPanelElement;
};
interface HTMLHyDropdownPanelItemElement extends Components.HyDropdownPanelItem, HTMLStencilElement {}
var HTMLHyDropdownPanelItemElement: {
prototype: HTMLHyDropdownPanelItemElement;
new (): HTMLHyDropdownPanelItemElement;
};
interface HTMLHyFilterGroupElement extends Components.HyFilterGroup, HTMLStencilElement {}
var HTMLHyFilterGroupElement: {
prototype: HTMLHyFilterGroupElement;
new (): HTMLHyFilterGroupElement;
};
interface HTMLHyFilterGroupItemElement extends Components.HyFilterGroupItem, HTMLStencilElement {}
var HTMLHyFilterGroupItemElement: {
prototype: HTMLHyFilterGroupItemElement;
new (): HTMLHyFilterGroupItemElement;
};
interface HTMLHyFilterVisibilityToolElement extends Components.HyFilterVisibilityTool, HTMLStencilElement {}
var HTMLHyFilterVisibilityToolElement: {
prototype: HTMLHyFilterVisibilityToolElement;
new (): HTMLHyFilterVisibilityToolElement;
};
interface HTMLHyFilterVisibilityToolResetElement extends Components.HyFilterVisibilityToolReset, HTMLStencilElement {}
var HTMLHyFilterVisibilityToolResetElement: {
prototype: HTMLHyFilterVisibilityToolResetElement;
new (): HTMLHyFilterVisibilityToolResetElement;
};
interface HTMLHyFilterVisibilityToolToggleElement
extends Components.HyFilterVisibilityToolToggle,
HTMLStencilElement {}
var HTMLHyFilterVisibilityToolToggleElement: {
prototype: HTMLHyFilterVisibilityToolToggleElement;
new (): HTMLHyFilterVisibilityToolToggleElement;
};
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
interface HTMLHyFooterElement extends Components.HyFooter, HTMLStencilElement {}
var HTMLHyFooterElement: {
prototype: HTMLHyFooterElement;
new (): HTMLHyFooterElement;
};
interface HTMLHyFooterActionElement extends Components.HyFooterAction, HTMLStencilElement {}
var HTMLHyFooterActionElement: {
prototype: HTMLHyFooterActionElement;
new (): HTMLHyFooterActionElement;
};
interface HTMLHyFooterBaseElement extends Components.HyFooterBase, HTMLStencilElement {}
var HTMLHyFooterBaseElement: {
prototype: HTMLHyFooterBaseElement;
new (): HTMLHyFooterBaseElement;
};
interface HTMLHyFooterInfoElement extends Components.HyFooterInfo, HTMLStencilElement {}
var HTMLHyFooterInfoElement: {
prototype: HTMLHyFooterInfoElement;
new (): HTMLHyFooterInfoElement;
};
interface HTMLHyFooterLinkItemElement extends Components.HyFooterLinkItem, HTMLStencilElement {}
var HTMLHyFooterLinkItemElement: {
prototype: HTMLHyFooterLinkItemElement;
new (): HTMLHyFooterLinkItemElement;
};
interface HTMLHyGridContainerElement extends Components.HyGridContainer, HTMLStencilElement {}
var HTMLHyGridContainerElement: {
prototype: HTMLHyGridContainerElement;
new (): HTMLHyGridContainerElement;
};
interface HTMLHyGridItemElement extends Components.HyGridItem, HTMLStencilElement {}
var HTMLHyGridItemElement: {
prototype: HTMLHyGridItemElement;
new (): HTMLHyGridItemElement;
};
interface HTMLHyGridRowElement extends Components.HyGridRow, HTMLStencilElement {}
var HTMLHyGridRowElement: {
prototype: HTMLHyGridRowElement;
new (): HTMLHyGridRowElement;
};
interface HTMLHyHeadingElement extends Components.HyHeading, HTMLStencilElement {}
var HTMLHyHeadingElement: {
prototype: HTMLHyHeadingElement;
new (): HTMLHyHeadingElement;
};
interface HTMLHyHeroElement extends Components.HyHero, HTMLStencilElement {}
var HTMLHyHeroElement: {
prototype: HTMLHyHeroElement;
new (): HTMLHyHeroElement;
};
interface HTMLHyIconElement extends Components.HyIcon, HTMLStencilElement {}
var HTMLHyIconElement: {
prototype: HTMLHyIconElement;
new (): HTMLHyIconElement;
};
interface HTMLHyImageElement extends Components.HyImage, HTMLStencilElement {}
var HTMLHyImageElement: {
prototype: HTMLHyImageElement;
new (): HTMLHyImageElement;
};
interface HTMLHyIngressElement extends Components.HyIngress, HTMLStencilElement {}
var HTMLHyIngressElement: {
prototype: HTMLHyIngressElement;
new (): HTMLHyIngressElement;
};
interface HTMLHyIntroductionElement extends Components.HyIntroduction, HTMLStencilElement {}
var HTMLHyIntroductionElement: {
prototype: HTMLHyIntroductionElement;
new (): HTMLHyIntroductionElement;
};
interface HTMLHyKeyFigureElement extends Components.HyKeyFigure, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyKeyFigureElement: {
prototype: HTMLHyKeyFigureElement;
new (): HTMLHyKeyFigureElement;
};
interface HTMLHyKeyFigureGroupElement extends Components.HyKeyFigureGroup, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyKeyFigureGroupElement: {
prototype: HTMLHyKeyFigureGroupElement;
new (): HTMLHyKeyFigureGroupElement;
};
interface HTMLHyKeyHighlightElement extends Components.HyKeyHighlight, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyKeyHighlightElement: {
prototype: HTMLHyKeyHighlightElement;
new (): HTMLHyKeyHighlightElement;
};
interface HTMLHyKeyHighlightGroupElement extends Components.HyKeyHighlightGroup, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyKeyHighlightGroupElement: {
prototype: HTMLHyKeyHighlightGroupElement;
new (): HTMLHyKeyHighlightGroupElement;
};
interface HTMLHyLargeProcessFlowElement extends Components.HyLargeProcessFlow, HTMLStencilElement {}
var HTMLHyLargeProcessFlowElement: {
prototype: HTMLHyLargeProcessFlowElement;
new (): HTMLHyLargeProcessFlowElement;
};
interface HTMLHyLargeProcessFlowPhaseElement extends Components.HyLargeProcessFlowPhase, HTMLStencilElement {}
var HTMLHyLargeProcessFlowPhaseElement: {
prototype: HTMLHyLargeProcessFlowPhaseElement;
new (): HTMLHyLargeProcessFlowPhaseElement;
};
interface HTMLHyLinkElement extends Components.HyLink, HTMLStencilElement {}
var HTMLHyLinkElement: {
prototype: HTMLHyLinkElement;
new (): HTMLHyLinkElement;
};
interface HTMLHyLinkBoxElement extends Components.HyLinkBox, HTMLStencilElement {}
var HTMLHyLinkBoxElement: {
prototype: HTMLHyLinkBoxElement;
new (): HTMLHyLinkBoxElement;
};
interface HTMLHyLinkBoxListElement extends Components.HyLinkBoxList, HTMLStencilElement {}

Ekaterina Kondareva
committed
var HTMLHyLinkBoxListElement: {
prototype: HTMLHyLinkBoxListElement;
new (): HTMLHyLinkBoxListElement;
};
interface HTMLHyLinkListElement extends Components.HyLinkList, HTMLStencilElement {}
var HTMLHyLinkListElement: {
prototype: HTMLHyLinkListElement;
new (): HTMLHyLinkListElement;
};
interface HTMLHyListItemElement extends Components.HyListItem, HTMLStencilElement {}
var HTMLHyListItemElement: {
prototype: HTMLHyListItemElement;
new (): HTMLHyListItemElement;
};
interface HTMLHyMainElement extends Components.HyMain, HTMLStencilElement {}
var HTMLHyMainElement: {
prototype: HTMLHyMainElement;
new (): HTMLHyMainElement;
};
Ekaterina Kondareva
committed
interface HTMLHyMainContentWrapperElement extends Components.HyMainContentWrapper, HTMLStencilElement {}
var HTMLHyMainContentWrapperElement: {
prototype: HTMLHyMainContentWrapperElement;
new (): HTMLHyMainContentWrapperElement;
};
interface HTMLHyMenuElement extends Components.HyMenu, HTMLStencilElement {}
var HTMLHyMenuElement: {
prototype: HTMLHyMenuElement;
new (): HTMLHyMenuElement;
};
interface HTMLHyMenuItemElement extends Components.HyMenuItem, HTMLStencilElement {}
var HTMLHyMenuItemElement: {
prototype: HTMLHyMenuItemElement;
new (): HTMLHyMenuItemElement;
};
interface HTMLHyMenuItemSidebarElement extends Components.HyMenuItemSidebar, HTMLStencilElement {}
var HTMLHyMenuItemSidebarElement: {
prototype: HTMLHyMenuItemSidebarElement;
new (): HTMLHyMenuItemSidebarElement;
};
interface HTMLHyMenuLanguageElement extends Components.HyMenuLanguage, HTMLStencilElement {}
var HTMLHyMenuLanguageElement: {
prototype: HTMLHyMenuLanguageElement;
new (): HTMLHyMenuLanguageElement;
};
interface HTMLHyMenuLanguageItemElement extends Components.HyMenuLanguageItem, HTMLStencilElement {}
var HTMLHyMenuLanguageItemElement: {
prototype: HTMLHyMenuLanguageItemElement;
new (): HTMLHyMenuLanguageItemElement;
};
interface HTMLHyMenuLevelContainerElement extends Components.HyMenuLevelContainer, HTMLStencilElement {}
var HTMLHyMenuLevelContainerElement: {
prototype: HTMLHyMenuLevelContainerElement;
new (): HTMLHyMenuLevelContainerElement;
};
interface HTMLHyMenuMobileBreadcrumbElement extends Components.HyMenuMobileBreadcrumb, HTMLStencilElement {}
var HTMLHyMenuMobileBreadcrumbElement: {
prototype: HTMLHyMenuMobileBreadcrumbElement;
new (): HTMLHyMenuMobileBreadcrumbElement;
interface HTMLHyMenuSidebarElement extends Components.HyMenuSidebar, HTMLStencilElement {}
var HTMLHyMenuSidebarElement: {
prototype: HTMLHyMenuSidebarElement;
new (): HTMLHyMenuSidebarElement;
};
interface HTMLHyPagerElement extends Components.HyPager, HTMLStencilElement {}
var HTMLHyPagerElement: {
prototype: HTMLHyPagerElement;
new (): HTMLHyPagerElement;
};
interface HTMLHyPagerItemElement extends Components.HyPagerItem, HTMLStencilElement {}
var HTMLHyPagerItemElement: {
prototype: HTMLHyPagerItemElement;
new (): HTMLHyPagerItemElement;
};
interface HTMLHyParagraphTextElement extends Components.HyParagraphText, HTMLStencilElement {}
var HTMLHyParagraphTextElement: {
prototype: HTMLHyParagraphTextElement;
new (): HTMLHyParagraphTextElement;
};
interface HTMLHyPersonCardElement extends Components.HyPersonCard, HTMLStencilElement {}
var HTMLHyPersonCardElement: {
prototype: HTMLHyPersonCardElement;
new (): HTMLHyPersonCardElement;
};
interface HTMLHyProcessElement extends Components.HyProcess, HTMLStencilElement {}
var HTMLHyProcessElement: {
prototype: HTMLHyProcessElement;
new (): HTMLHyProcessElement;
};
interface HTMLHyProcessFlowBoxElement extends Components.HyProcessFlowBox, HTMLStencilElement {}
var HTMLHyProcessFlowBoxElement: {
prototype: HTMLHyProcessFlowBoxElement;
new (): HTMLHyProcessFlowBoxElement;
};
interface HTMLHyProminentImageElement extends Components.HyProminentImage, HTMLStencilElement {}
var HTMLHyProminentImageElement: {
prototype: HTMLHyProminentImageElement;
new (): HTMLHyProminentImageElement;
};
interface HTMLHyQuoteElement extends Components.HyQuote, HTMLStencilElement {}
var HTMLHyQuoteElement: {
prototype: HTMLHyQuoteElement;
new (): HTMLHyQuoteElement;
};
interface HTMLHyRowElement extends Components.HyRow, HTMLStencilElement {}
var HTMLHyRowElement: {
prototype: HTMLHyRowElement;
new (): HTMLHyRowElement;
};
interface HTMLHySearchFieldElement extends Components.HySearchField, HTMLStencilElement {}
var HTMLHySearchFieldElement: {
prototype: HTMLHySearchFieldElement;
new (): HTMLHySearchFieldElement;
};
interface HTMLHySectionContainerElement extends Components.HySectionContainer, HTMLStencilElement {}
var HTMLHySectionContainerElement: {
prototype: HTMLHySectionContainerElement;
new (): HTMLHySectionContainerElement;
};
interface HTMLHyShortcutsElement extends Components.HyShortcuts, HTMLStencilElement {}
var HTMLHyShortcutsElement: {
prototype: HTMLHyShortcutsElement;
new (): HTMLHyShortcutsElement;
};
interface HTMLHySiteHeaderElement extends Components.HySiteHeader, HTMLStencilElement {}
var HTMLHySiteHeaderElement: {
prototype: HTMLHySiteHeaderElement;
new (): HTMLHySiteHeaderElement;
};
interface HTMLHySiteLogoElement extends Components.HySiteLogo, HTMLStencilElement {}
var HTMLHySiteLogoElement: {
prototype: HTMLHySiteLogoElement;
new (): HTMLHySiteLogoElement;
};
interface HTMLHySiteSearchElement extends Components.HySiteSearch, HTMLStencilElement {}
var HTMLHySiteSearchElement: {
prototype: HTMLHySiteSearchElement;
new (): HTMLHySiteSearchElement;
};
interface HTMLHyTableContainerElement extends Components.HyTableContainer, HTMLStencilElement {}
var HTMLHyTableContainerElement: {
prototype: HTMLHyTableContainerElement;
new (): HTMLHyTableContainerElement;
};
interface HTMLHyTabsElement extends Components.HyTabs, HTMLStencilElement {}
var HTMLHyTabsElement: {
prototype: HTMLHyTabsElement;
new (): HTMLHyTabsElement;
};
interface HTMLHyTabsItemElement extends Components.HyTabsItem, HTMLStencilElement {}
var HTMLHyTabsItemElement: {
prototype: HTMLHyTabsItemElement;
new (): HTMLHyTabsItemElement;
};
interface HTMLHyTagElement extends Components.HyTag, HTMLStencilElement {}
var HTMLHyTagElement: {
prototype: HTMLHyTagElement;
new (): HTMLHyTagElement;
};
interface HTMLHyTinyTextElement extends Components.HyTinyText, HTMLStencilElement {}
var HTMLHyTinyTextElement: {
prototype: HTMLHyTinyTextElement;
new (): HTMLHyTinyTextElement;
};
interface HTMLHyTwoColumnsElement extends Components.HyTwoColumns, HTMLStencilElement {}
var HTMLHyTwoColumnsElement: {
prototype: HTMLHyTwoColumnsElement;
new (): HTMLHyTwoColumnsElement;
};
interface HTMLHyUserLoginFormElement extends Components.HyUserLoginForm, HTMLStencilElement {}
var HTMLHyUserLoginFormElement: {
prototype: HTMLHyUserLoginFormElement;
new (): HTMLHyUserLoginFormElement;
};
interface HTMLHyVideoElement extends Components.HyVideo, HTMLStencilElement {}
var HTMLHyVideoElement: {
prototype: HTMLHyVideoElement;
new (): HTMLHyVideoElement;
};
'color-box': HTMLColorBoxElement;
'hy-accordion-container': HTMLHyAccordionContainerElement;
'hy-accordion-item': HTMLHyAccordionItemElement;
'hy-adjacent-image-text': HTMLHyAdjacentImageTextElement;
'hy-badge': HTMLHyBadgeElement;
'hy-banner': HTMLHyBannerElement;
'hy-baseline': HTMLHyBaselineElement;
'hy-box': HTMLHyBoxElement;
'hy-box-container': HTMLHyBoxContainerElement;
'hy-button': HTMLHyButtonElement;
'hy-checkbox': HTMLHyCheckboxElement;
'hy-content-list': HTMLHyContentListElement;
'hy-content-list-item': HTMLHyContentListItemElement;
'hy-cta-button': HTMLHyCtaButtonElement;
'hy-cta-link': HTMLHyCtaLinkElement;
'hy-desktop-menu-links': HTMLHyDesktopMenuLinksElement;
'hy-docs-container': HTMLHyDocsContainerElement;
'hy-dropdown': HTMLHyDropdownElement;
'hy-dropdown-panel': HTMLHyDropdownPanelElement;
'hy-dropdown-panel-item': HTMLHyDropdownPanelItemElement;
'hy-filter-group': HTMLHyFilterGroupElement;
'hy-filter-group-item': HTMLHyFilterGroupItemElement;
'hy-filter-visibility-tool': HTMLHyFilterVisibilityToolElement;
'hy-filter-visibility-tool-reset': HTMLHyFilterVisibilityToolResetElement;
'hy-filter-visibility-tool-toggle': HTMLHyFilterVisibilityToolToggleElement;
'hy-footer': HTMLHyFooterElement;
'hy-footer-action': HTMLHyFooterActionElement;
'hy-footer-base': HTMLHyFooterBaseElement;
'hy-footer-info': HTMLHyFooterInfoElement;
'hy-footer-link-item': HTMLHyFooterLinkItemElement;
'hy-grid-container': HTMLHyGridContainerElement;
'hy-grid-item': HTMLHyGridItemElement;
'hy-grid-row': HTMLHyGridRowElement;
'hy-heading': HTMLHyHeadingElement;
'hy-icon': HTMLHyIconElement;
'hy-image': HTMLHyImageElement;
'hy-ingress': HTMLHyIngressElement;
'hy-introduction': HTMLHyIntroductionElement;
'hy-key-figure': HTMLHyKeyFigureElement;
'hy-key-figure-group': HTMLHyKeyFigureGroupElement;
'hy-key-highlight': HTMLHyKeyHighlightElement;
'hy-key-highlight-group': HTMLHyKeyHighlightGroupElement;
'hy-large-process-flow': HTMLHyLargeProcessFlowElement;
'hy-large-process-flow-phase': HTMLHyLargeProcessFlowPhaseElement;
'hy-link': HTMLHyLinkElement;
'hy-link-box': HTMLHyLinkBoxElement;
'hy-link-box-list': HTMLHyLinkBoxListElement;
'hy-list-item': HTMLHyListItemElement;
Ekaterina Kondareva
committed
'hy-main-content-wrapper': HTMLHyMainContentWrapperElement;
'hy-menu': HTMLHyMenuElement;
'hy-menu-item': HTMLHyMenuItemElement;
'hy-menu-item-sidebar': HTMLHyMenuItemSidebarElement;
'hy-menu-language': HTMLHyMenuLanguageElement;
'hy-menu-language-item': HTMLHyMenuLanguageItemElement;
'hy-menu-level-container': HTMLHyMenuLevelContainerElement;
'hy-menu-mobile-breadcrumb': HTMLHyMenuMobileBreadcrumbElement;
'hy-menu-sidebar': HTMLHyMenuSidebarElement;
'hy-pager': HTMLHyPagerElement;
'hy-pager-item': HTMLHyPagerItemElement;
'hy-paragraph-text': HTMLHyParagraphTextElement;
'hy-person-card': HTMLHyPersonCardElement;
'hy-process': HTMLHyProcessElement;
'hy-process-flow-box': HTMLHyProcessFlowBoxElement;
'hy-prominent-image': HTMLHyProminentImageElement;
'hy-search-field': HTMLHySearchFieldElement;
'hy-section-container': HTMLHySectionContainerElement;
'hy-site-header': HTMLHySiteHeaderElement;
'hy-site-logo': HTMLHySiteLogoElement;
'hy-site-search': HTMLHySiteSearchElement;
'hy-tabs': HTMLHyTabsElement;
'hy-tabs-item': HTMLHyTabsItemElement;
'hy-tiny-text': HTMLHyTinyTextElement;
'hy-two-columns': HTMLHyTwoColumnsElement;
'hy-user-login-form': HTMLHyUserLoginFormElement;
}
declare namespace LocalJSX {
interface ColorBox {}
interface HyAccordionContainer {
accordionid?: string;
}
interface HyAccordionItem {
accordiontitle?: string;

Ekaterina Kondareva
committed
interface HyAdjacentImageText {

Ekaterina Kondareva
committed
imageAlt?: string;
imageUrl?: string;
mainUrl?: string;
mainUrl2?: string;
mainUrlAriaLabel?: string;
mainUrlAriaLabel2?: string;
mainUrlIsExternal?: boolean;
mainUrlIsExternal2?: boolean;
mainUrlTitle?: string;
mainUrlTitle2?: string;
textDescription?: string;
textTitle?: string;
}
variant?: 'primary' | 'warn' | 'success' | 'disabled';
scLabel?: string;
textDescription?: string;
textTitle?: string;
url?: string;
urlTitle?: string;
}
/**
* Top margin to be added to all but first element. Amount of rem:s
*/
margin?: number;
}
interface HyBox {
/**
* value for vertical alignment (align-items)
*/
align?: string;
/**
* background color. Must use one of css variable names from color tokens
*/
bg?: string;
/**
* fixed height for the container, useful for extra spacing containers
*/
h?: number;
/**
* Value for horisontal alignment (justify-content)
*/
justify?: string;
/**
* All sides margin value in rems. Responsive when given Comma separated values.
*/
m?: string;
/**
* Bottom margin in rems. Responsive when given Comma separated values.
*/
mb?: string;
/**
* Left margin in rems. Responsive when given Comma separated values.
*/
ml?: string;
/**
* Right margin in rems. Responsive when given Comma separated values.
*/
mr?: string;
/**
* Top margin in rems. Responsive when given Comma separated values.
*/
mt?: string;
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
/**
* All sides padding value in rems. Responsive when given Comma separated values.
*/
p?: string;
/**
* Bottom padding in rems. Responsive when given Comma separated values.
*/
pb?: string;
/**
* Left padding in rems. Responsive when given Comma separated values.
*/
pl?: string;
/**
* Right padding in rems. Responsive when given Comma separated values.
*/
pr?: string;
/**
* Top padding in rems. Responsive when given Comma separated values.
*/
pt?: string;
/**
* Responsive width. Must be a comma separated string of percentage values for breakpoints. First item is the default value.
*/
width?: string;
}
interface HyBoxContainer {
/**
* Should the container have a max width of 90rems
*/
maxWidth?: boolean;
/**
* Should the items wrap to new rows.
*/
wrap?: boolean;
}
interface HyBreadcrumbs {
dataItems?: Breadcrumb[] | string;
headerstyle?: string;
variant?: BreadcrumbVariants;
}
interface HyButton {
/**
* Aria label for the element
*/
ariaLabel?: string;
/**
* Custom classes added to button element.
*/
buttonClasses?: string;
/**
* Button type. Defaults to submit.
*/
buttonType?: string;
/**
* Use this to programmatically disable the button, matches the native button functionality
*/
disabled?: boolean;
/**
* Icon to use on the left side
*/
icon?: string;
/**
* Icon to use on the right side
*/
iconRight?: string;
/**
* Use only with url property. Sets the
*/
isExternal?: boolean;
/**
* Size (height) of the button. Normal: 44px, large: 48px
*/
/**
* deprecated, use disabled boolean value
*/
/**
* Set this on if an anchor tag is required instead of a button.
*/
url?: string;
/**
* The element variant. Defaults to primary
*/
variant?: ButtonVariants;
}
interface HyCheckbox {
/**
* Checked attribute
*/
checkboxChecked?: boolean;
/**
* Unique id for checkbox element
*/
checkboxId?: string | number;
/**
* Label for input to describe
*/
checkboxLabel?: string;
/**
* Value for input element
*/
checkboxValue?: string | number;
/**
* Variant to deifne what style of checkbox to use
*/
variant?: CheckboxVariants;
dataItems?: string;
linkLabel?: string;
}
interface HyContentListItem {
courseCode?: string;
courseCredits?: string;
courseEndDate?: string;
courseEnrollmentLink?: string;
courseLinkLabel?: string;
courseName?: string;
druid
committed
courseOrganisation?: string;
courseStartDate?: string;
courseStudyFormat?: string;
courseTags?: TagValue[] | string;
courseTeachingLanguage?: string;
variant?: CourseVariants;
}

Ekaterina Kondareva
committed
interface HyCtaButton {
Ekaterina Kondareva
committed
scLabel?: string;

Ekaterina Kondareva
committed
interface HyCtaLink {
isExternal?: boolean;
linkContent?: string;
scLabel?: string;
url?: string;

Ekaterina Kondareva
committed
}
interface HyDesktopMenuLinks {
dataDesktopLinks?: DesktopLinks[] | string;
onMenuDesktopToggled?: (event: CustomEvent<any>) => void;
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
interface HyDropdown {
dropdownLabel?: string;
dropdownOptions?: IDropdownItem[] | string;
}
interface HyDropdownPanel {
isHidden?: boolean;
}
interface HyDropdownPanelItem {
dropdownItemId?: string | number;
dropdownItemLabel?: string;
dropdownItemValue?: string | number;
isLast?: boolean;
}
interface HyFilterGroup {
filterGroupFilters?: IFilterGroupFilter[] | string;
filterGroupLabel?: string;
}
interface HyFilterGroupItem {
filterGroupItemId?: string | number;
filterGroupItemLabel?: string;
}
interface HyFilterVisibilityTool {
filterVisibilityToolType?: 'toggle' | 'reset';
}
interface HyFilterVisibilityToolReset {}
interface HyFilterVisibilityToolToggle {}
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
interface HyFooter {}
interface HyFooterAction {
/**
* Up button label.
*/
upButtonLabel?: string;
/**
* String of text for updated text to be displayed.
*/
updatedText?: string;
}
interface HyFooterBase {
/**
* Link item color
*/
color?: FooterLinkItemColor;
/**
* Copyright text
*/
copyrightText?: string;
/**
* Footer links to be displayed
*/
dataFooterBaseLinks?: FooterBaseLinks[] | string;
/**
* Footer some links
*/
dataFooterBaseSome?: FooterBaseSome[] | string;
/**
* Logo label
*/
logoLabel?: string;
/**
* Logo url
*/
logoUrl?: string;
/**
* Logo size
*/
size?: SiteLogoSize;
/**
* Label for some links
*/
someLabel?: string;
}
interface HyFooterInfo {
/**
* Data for links to be displayed.
*/
dataFooterInfoLinks?: FooterInfoLinks[] | string;
/**
* Content area link button text.
*/
linkText?: string;
/**
* Content area link button url.
*/
linkUrl?: string;
/**
* Content area text.
*/
textDescription?: string;
/**
* Content area title.
*/
textTitle?: string;
}
interface HyFooterLinkItem {
color?: FooterLinkItemColor;
isMobile?: boolean;
items?: Array<any>;
label?: string;
mainLink?: boolean;
url?: string;
interface HyGridContainer {}
interface HyGridItem {
columns?: GridColumns;
columnslg?: GridColumnsLg;
columnssm?: GridColumnsSm;
contentalign?: GridAlignVariants;
}
interface HyGridRow {}
interface HyHeading {
interface HyHero {
colorVariant?: HeroColorVariant;
description?: string;
scLabel?: string;
url?: string;
urlTitle?: string;
}
interface HyIcon {
fill?: string;
icon?: string;
size?: number;
}
interface HyImage {
aspectRatioHeight?: number;
aspectRatioWidth?: number;
caption?: string;
imageAlt?: string;
imageUrl?: string;
}
interface HyIngress {
headerstyle?: string;
}
reversed?: boolean;
scLabel?: string;
textDescription?: string;
textTitle?: string;
url?: string;
urlTitle?: string;
variant?: IntroductionBgColors;
}

Ekaterina Kondareva
committed
interface HyKeyFigure {
description?: string;
heading?: string;
variant?: KeyHighlightVariants;
}
interface HyKeyFigureGroup {
dataItems?: KeyFigureValue[] | string;

Ekaterina Kondareva
committed
}
interface HyKeyHighlight {
description?: string;
heading?: string;
variant?: KeyHighlightVariants;
}
interface HyKeyHighlightGroup {
dataItems?: KeyHighlightValue[] | string;

Ekaterina Kondareva
committed
variant?: KeyHighlightVariants;
}
interface HyLargeProcessFlow {
dataItems?: ProcessFlowValue[] | string;
}
interface HyLargeProcessFlowPhase {
dataItems?: PhaseValue[] | string;
}
interface HyLink {
isExternal?: boolean;
linkContent?: string;
Ekaterina Kondareva
committed
scLabel?: string;
url?: string;
variant?: LinkVariants;
}
interface HyLinkBox {
imageAlt?: string;
imageUrl?: string;
isExternal?: boolean;
textDescription?: string;
textTitle?: string;
url?: string;

Ekaterina Kondareva
committed
variant?: LinkBoxVariants;
}
interface HyLinkBoxList {
dataItems?: LinkBox[] | string;

Ekaterina Kondareva
committed
variant?: LinkBoxVariants;
interface HyLinkList {
dataItems?: CtaLinkValue[] | string;
interface HyListItem {
additionalInfo?: AdditionalInfo[] | string;
headerstyle?: string;
imageLabel?: string;
isExternal?: boolean;
itemImageAlt?: string;
itemImageUrl?: string;
itemTitle?: string;
itemType?: string;
outGoingUrlLabel?: string;
relatedLinks?: RelatedLink[] | string;
relatedLinksBlockTitle?: string;
scLabel?: string;
url?: string;
interface HyMain {
hasSidebar?: boolean;
}
Ekaterina Kondareva
committed
interface HyMainContentWrapper {}
interface HyMenu {
dataMenuDonate?: string;
dataMenuLanguage?: string;
isDemo?: boolean;
labelFrontPage?: string;
logoLabel?: string;
logoUrl?: string;
menuButtonBreadcrumbReturn?: string;
Markus Kalijärvi
committed
menuButtonSubmenuExpand?: string;
menuIsOpen?: boolean;
menuType?: MenuType;
onMenuContainerToggled?: (event: CustomEvent<any>) => void;
}
interface HyMenuItem {
ariaExpanded?: boolean;
depth?: number;
hasChildren?: boolean;
inActiveTrail?: boolean;
isActive?: boolean;
isDemo?: boolean;
Markus Kalijärvi
committed
menuButtonSubmenuExpand?: string;
menuItemAlternative?: boolean;
menuLinkId?: string;
menuType?: MenuType;
onAddBreadcrumb?: (event: CustomEvent<any>) => void;
onMenuContainerActiveTrail?: (event: CustomEvent<any>) => void;
onMenuContainerToggled?: (event: CustomEvent<any>) => void;
onRouteClicked?: (event: CustomEvent<any>) => void;
parentAsHeading?: string;
parentExpanded?: boolean;
url?: string;
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
interface HyMenuItemSidebar {
ariaExpanded?: boolean;
depth?: number;
hasChildren?: boolean;
inActiveTrail?: boolean;
isActive?: boolean;
isActiveChild?: boolean;
isDemo?: boolean;
isHeading?: boolean;
isParent?: boolean;
label?: string;
menuButtonSubmenuExpand?: string;
menuIsOpen?: boolean;
menuItemAlternative?: boolean;
menuLinkId?: string;
menuType?: MenuType;
onAddBreadcrumb?: (event: CustomEvent<any>) => void;
onMenuContainerActiveTrail?: (event: CustomEvent<any>) => void;
onMenuContainerToggled?: (event: CustomEvent<any>) => void;
onRouteClicked?: (event: CustomEvent<any>) => void;
parentAsHeading?: string;
parentExpanded?: boolean;
url?: string;
}
interface HyMenuLanguage {
dataMenuLanguage?: MenuLanguage[] | string;
isMobile?: boolean;
labels?: ComponentLabels[] | string;
onMenuLanguageToggled?: (event: CustomEvent<any>) => void;
}
interface HyMenuLanguageItem {
abbr?: string;
isActive?: boolean;
isMobile?: boolean;
label?: string;
langCode?: string;
url?: string;
}
interface HyMenuLevelContainer {
activeTrailTriggered?: boolean;
depth?: number;
/**
* label for front page for panel first parent
*/
frontLabel?: string;
/**
* Url to front page for panel first parent
*/
frontUrl?: string;
labelFrontPage?: string;
Markus Kalijärvi
committed
menuButtonSubmenuExpand?: string;
menuType?: MenuType;
triggerItem?: string;
}
interface HyMenuMobileBreadcrumb {
bid?: string;
isFirst?: boolean;
label?: string;
Loading
Loading full blame...