@marioschmidt/design-system-tokens 1.0.11 → 1.0.13
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/dist/android/res/values/base/primitive_color_value.xml +101 -0
- package/dist/android/res/values/base/primitive_font_value.xml +50 -0
- package/dist/android/res/values/base/primitive_size_value.xml +56 -0
- package/dist/android/res/values/base/primitive_space_value.xml +32 -0
- package/dist/android/res/values/density/density_compact.xml +15 -0
- package/dist/android/res/values/density/density_default.xml +15 -0
- package/dist/android/res/values/density/density_spacious.xml +15 -0
- package/dist/android/res/values/mapping/brand_advertorial.xml +278 -0
- package/dist/android/res/values/mapping/brand_bild.xml +278 -0
- package/dist/android/res/values/mapping/brand_color_bild.xml +75 -0
- package/dist/android/res/values/mapping/brand_color_sportbild.xml +75 -0
- package/dist/android/res/values/mapping/brand_sportbild.xml +278 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_lg.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_md.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_sm.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_xs.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/color/color_advertorial_dark.xml +271 -0
- package/dist/android/res/values/semantic/advertorial/color/color_advertorial_light.xml +271 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_lg.xml +473 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_md.xml +473 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_sm.xml +473 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_xs.xml +473 -0
- package/dist/android/res/values/semantic/bild/color/color_bild_dark.xml +271 -0
- package/dist/android/res/values/semantic/bild/color/color_bild_light.xml +271 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_lg.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_md.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_sm.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_xs.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/color/color_sportbild_dark.xml +271 -0
- package/dist/android/res/values/semantic/sportbild/color/color_sportbild_light.xml +271 -0
- package/dist/flutter/base/primitive_color_value.dart +109 -0
- package/dist/flutter/base/primitive_font_value.dart +58 -0
- package/dist/flutter/base/primitive_size_value.dart +64 -0
- package/dist/flutter/base/primitive_space_value.dart +40 -0
- package/dist/flutter/density/density_compact.dart +23 -0
- package/dist/flutter/density/density_default.dart +23 -0
- package/dist/flutter/density/density_spacious.dart +23 -0
- package/dist/flutter/mapping/brand_advertorial.dart +286 -0
- package/dist/flutter/mapping/brand_bild.dart +286 -0
- package/dist/flutter/mapping/brand_color_bild.dart +83 -0
- package/dist/flutter/mapping/brand_color_sportbild.dart +83 -0
- package/dist/flutter/mapping/brand_sportbild.dart +286 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_lg.dart +499 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_md.dart +499 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_sm.dart +499 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_xs.dart +499 -0
- package/dist/flutter/semantic/advertorial/color/color_advertorial_dark.dart +435 -0
- package/dist/flutter/semantic/advertorial/color/color_advertorial_light.dart +435 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_lg.dart +499 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_md.dart +499 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_sm.dart +499 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_xs.dart +499 -0
- package/dist/flutter/semantic/bild/color/color_bild_dark.dart +435 -0
- package/dist/flutter/semantic/bild/color/color_bild_light.dart +435 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_lg.dart +499 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_md.dart +499 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_sm.dart +499 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_xs.dart +499 -0
- package/dist/flutter/semantic/sportbild/color/color_sportbild_dark.dart +435 -0
- package/dist/flutter/semantic/sportbild/color/color_sportbild_light.dart +435 -0
- package/dist/ios/base/PrimitiveColorValue.swift +106 -0
- package/dist/ios/base/PrimitiveFontValue.swift +55 -0
- package/dist/ios/base/PrimitiveSizeValue.swift +61 -0
- package/dist/ios/base/PrimitiveSpaceValue.swift +37 -0
- package/dist/ios/density/DensityCompact.swift +20 -0
- package/dist/ios/density/DensityDefault.swift +20 -0
- package/dist/ios/density/DensitySpacious.swift +20 -0
- package/dist/ios/mapping/BrandAdvertorial.swift +283 -0
- package/dist/ios/mapping/BrandBild.swift +283 -0
- package/dist/ios/mapping/BrandColorBild.swift +80 -0
- package/dist/ios/mapping/BrandColorSportbild.swift +80 -0
- package/dist/ios/mapping/BrandSportbild.swift +283 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialLg.swift +496 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialMd.swift +496 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialSm.swift +496 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialXs.swift +496 -0
- package/dist/ios/semantic/advertorial/color/ColorAdvertorialDark.swift +432 -0
- package/dist/ios/semantic/advertorial/color/ColorAdvertorialLight.swift +432 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildLg.swift +496 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildMd.swift +496 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildSm.swift +496 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildXs.swift +496 -0
- package/dist/ios/semantic/bild/color/ColorBildDark.swift +432 -0
- package/dist/ios/semantic/bild/color/ColorBildLight.swift +432 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildLg.swift +496 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildMd.swift +496 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildSm.swift +496 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildXs.swift +496 -0
- package/dist/ios/semantic/sportbild/color/ColorSportbildDark.swift +432 -0
- package/dist/ios/semantic/sportbild/color/ColorSportbildLight.swift +432 -0
- package/dist/manifest.json +87 -3
- package/package.json +1 -1
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// BreakpointBildLg.swift
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
// Do not edit directly, this file was auto-generated.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
import UIKit
|
|
10
|
+
|
|
11
|
+
public class {
|
|
12
|
+
public static let breakpointName = lg
|
|
13
|
+
public static let componentAccordionAccordionLabelFontFamily = Gotham XNarrow /** This variable exists specifically for changing the accordion font family across brands. It is subject to review. Bild: GothamXNarrow, SpoBi: Inter, Ads: LucindaGrande */
|
|
14
|
+
public static let componentArticleAricleMobile1ColGridImageMarginSpace = 72
|
|
15
|
+
public static let componentArticleArticleContentInlineSpace = 162 /** 16 | 16 | 72 | 162 - This variable is used for making the left and right spacings around article content blocks. Current css has the article-body class assigned to a div and article body contains these horizontal padding values. */
|
|
16
|
+
public static let componentArticleArticleContentStackSpace = 32 /** 16 - 16 - 24 - 32 - This variable creates the vertical spacing between different article body elements such as avatars, media players, corssheadings, paragraphs, field sets, images, tables, quotes, videos, social embeds, etc. */
|
|
17
|
+
public static let componentArticleArticleGalleryATeaserWidth = 300 /** same as standard teaser width size variable */
|
|
18
|
+
public static let componentArticleArticleHeadingsInlineSpace = 16 /** 16 | 16 | 72 | 16 - This variable is used for the left and right space within the article page headings container which holds the article page kicker, headline and subheadline. */
|
|
19
|
+
public static let componentArticleArticleHeadingsStackSpace = 16 /** 12 | 12 | 12 | 16 - This spacing variable is used for the space between article page heading kickers, headlines and subheadlines. XS&SM need review; correct value might be 8 */
|
|
20
|
+
public static let componentArticleArticleHeadlineFontSize = 100 /** 40 - 40 - 72 - 100 - This variable uses the semantic variables headline2 for XS&SM, headline1 for MD&LG */
|
|
21
|
+
public static let componentArticleArticleImageCaptionFontSize = 18 /** CSS --article-figure-meta-font-size 16-16-18-18 */
|
|
22
|
+
public static let componentArticleArticleImageCaptionLineHeight = 24.75 /** this component level variable references the branding variables */
|
|
23
|
+
public static let componentArticleArticleImageContainerStackSpace = 16
|
|
24
|
+
public static let componentArticleArticleImageLandscapeInlineSpace = 16
|
|
25
|
+
public static let componentArticleArticleImagePortaitInlineSpace = 162
|
|
26
|
+
public static let componentArticleArticleImageSourceFontSize = 18 /** NMT CSS --article-figure-meta-font-size */
|
|
27
|
+
public static let componentArticleArticleImageSourceLineHeight = 23
|
|
28
|
+
public static let componentArticleArticleInfoboxInlineSpace = 32
|
|
29
|
+
public static let componentArticleArticleInfoboxStackSpace = 32
|
|
30
|
+
public static let componentArticleArticleKickerFontSize = 30 /** This variable is used to control the font size of kickers in the heading section of article pages. 18 - 18 - 22 - 30 */
|
|
31
|
+
public static let componentArticleArticleMetaFontFamily = Gotham /** This variable is used on the font size of article day&time stamp that usually shows up along with the article author avatars. On app versions this variable is used for the avatar names. This variable references variables from the branding collection. */
|
|
32
|
+
public static let componentArticleArticleMetaFontSize = 16 /** This variable is used on the font size of article day&time stamp that usually shows up along with the article author avatars. On app versions this variable is used for the avatar names. 12 - 12 - 14 - 16 */
|
|
33
|
+
public static let componentArticleArticleTopMarginSpace = 16 /** 8 | 8 | 12 | 16 - This space variable is used at the top edge of the article main content bounding box. */
|
|
34
|
+
public static let componentAudioPlayerAudioPlayerFontSize = 18 /** This variable is used in the text style dedicated to audio player labels for elapsed time, reproduction speed and short functionality description text. 16 - 16 - 16 - 18 */
|
|
35
|
+
public static let componentAvatarAppAvatarFontFamily = Gotham /** This variable is used for setting the font of avatars on iOS and Android platforms. This is subject to review. */
|
|
36
|
+
public static let componentAvatarAvatarArticleSize = 48 /** This variable is used for setting the size of avatar images in article pages. It references the sizeConstMD variable from the "generic" semantic collection. Its value is 48 across devices. */
|
|
37
|
+
public static let componentAvatarAvatarAuthorPageSize = 130 /** 96 - 96 - 130 - 130 This variable is used for controlling the size of the avatar image on author pages. */
|
|
38
|
+
public static let componentAvatarAvatarFontFamily = Gotham XNarrow /** This variable is used in avatar text styles. It receives values from the Brand Tokens Collection. Bild: GothamXNarrow; SpoBi: Inter; Ads: LucidaGrande */
|
|
39
|
+
public static let componentAvatarAvatarLabelFontSize = 18 /** This variable is used on avatar names in article pages. Bild: 16 - 16 - 16 - 18; SpoBi&Ads: 13 - 13 - 13 - 15 */
|
|
40
|
+
public static let componentAvatarAvatarLabelLineHeight = 23 /** This variable is used for controlling the line height of avatar texts. Its values influence the stacking space between avatar texts. 21 - 21 - 21 - 23 */
|
|
41
|
+
public static let componentAvatarAvatarLaneGapSpace = 24 /** This variable is used for setting the inline space between multiple avatars that are horizontally placed in a lane when an article has multiple authors. 16 - 16 - 24 - 24 */
|
|
42
|
+
public static let componentBadgeAdLabelBadgeHeightSize = 30 /** 30 - 30 - 30 - 30 - This variable is used on the Advert rectangular badge that is found above an ad containers. */
|
|
43
|
+
public static let componentBadgeBadgesInnerInlineSpace = 4 /** This space variable is used for creating the left and right space between a badge's text label and the badge background surface that the text label is on top of. */
|
|
44
|
+
public static let componentBadgeBadgesInnerStackSpace = 2 /** This space variable is used for creating the top and bottom space between a badge's text label and the surface that the text label is on top of. */
|
|
45
|
+
public static let componentBreadcrumbBreadcrumbArrowLeftInlineSpace1 = 3
|
|
46
|
+
public static let componentBreadcrumbBreadcrumbArrowRightInlineSpace2 = 5
|
|
47
|
+
public static let componentBreadcrumbBreadcrumbFontFamily = Gotham XNarrow
|
|
48
|
+
public static let componentBreadcrumbBreadcrumbFontSize = 12 /** 15 - 15 - 15 - 12 -- Breadcrumbs have a slightly larger font size on mobile devices compared to when they are rendered on larger desktop devices. */
|
|
49
|
+
public static let componentBreadcrumbBreadcrumbFontWeight = 700
|
|
50
|
+
public static let componentBreadcrumbBreadcrumbInlineSpace = 0
|
|
51
|
+
public static let componentBreadcrumbBreadcrumbLineHeight = 12 /** 15 - 15 - 15 - 12 -- Breadcrumbs have a slightly larger font size on mobile devices compared to when they are rendered on larger desktop devices. */
|
|
52
|
+
public static let componentBreadcrumbBreadcrumbStackSpace = 16
|
|
53
|
+
public static let componentBreakingNewsBreakingNewsBadgeInlineSpace = 26
|
|
54
|
+
public static let componentBreakingNewsBreakingNewsBadgeLowerTitleFontSize = 30
|
|
55
|
+
public static let componentBreakingNewsBreakingNewsBadgeLowerTitleLineHeight = 21
|
|
56
|
+
public static let componentBreakingNewsBreakingNewsBadgeTitelsStackSpace = 4
|
|
57
|
+
public static let componentBreakingNewsBreakingNewsBadgeUpperTitleFontSize = 17
|
|
58
|
+
public static let componentBreakingNewsBreakingNewsBadgeUpperTitleLineHeight = 12
|
|
59
|
+
public static let componentBreakingNewsBreakingNewsContainerHeightSize = 56
|
|
60
|
+
public static let componentBreakingNewsBreakingNewsScrollingTextFontSize = 21
|
|
61
|
+
public static let componentBreakingNewsBreakingNewsScrollingTextLineHeight = 24
|
|
62
|
+
public static let componentButtonButtonBorderRadius = 8
|
|
63
|
+
public static let componentButtonButtonBorderWidthSize = 2
|
|
64
|
+
public static let componentButtonButtonContentGapSpace = 6
|
|
65
|
+
public static let componentButtonButtonContentMinHeightSize = 24 /** This fixed height variable ensures that the button maintains a consistent height, even when the icon is not active. */
|
|
66
|
+
public static let componentButtonButtonInlineSpace = 16
|
|
67
|
+
public static let componentButtonButtonLabelFontSize = 15
|
|
68
|
+
public static let componentButtonButtonLabelLineHeight = 15
|
|
69
|
+
public static let componentButtonButtonStackSpace = 6
|
|
70
|
+
public static let componentButtonPartnerLinkButtonInlineSpace = 8
|
|
71
|
+
public static let componentButtonPartnerLinkButtonLabelFontSize = 18 /** Use this variable for controlling the font size of partner buttons. 16 - 16 - 16 - 18 */
|
|
72
|
+
public static let componentButtonPartnerLinkButtonLabelHeightSize = 48
|
|
73
|
+
public static let componentCardsNewstickerImageCardWidthSize = 206
|
|
74
|
+
public static let componentCardsSearchResultCardImageHeightSizeStacked = 189
|
|
75
|
+
public static let componentCardsSearchResultCardImageWidthSize = 260
|
|
76
|
+
public static let componentCarouselAppEpaperCarouseBeilageItemWidth = 172
|
|
77
|
+
public static let componentCarouselAppEpaperCarouselItemDefaultWidth = 172
|
|
78
|
+
public static let componentCarouselAppEpaperCarouselItemFocusWidth = 240
|
|
79
|
+
public static let componentCarouselGalleryTeaserAppGapSpace = 8 /** This token is used to create more bottom padding space on system teaser headlines inside the gallery to avoid overlapping with the pagination. */
|
|
80
|
+
public static let componentCarouselGalleryTeaserTitleBottomSpace = 36 /** This token is used to create more bottom padding space on system teaser headlines inside the gallery to avoid overlapping with the pagination. */
|
|
81
|
+
public static let componentCarouselStandardTeaserGalleryTeaserWidthApp = 464
|
|
82
|
+
public static let componentCarouselStandardTeaserGalleryTeaserWidthWeb = 300
|
|
83
|
+
public static let componentChipsChipsFontSize = 18 /** This variable is used on the chips font size parameter of the chips text style. The font size changes only for the change between larger device widths and any device smaller than the largest. 16 - 16 -16 - 18 */
|
|
84
|
+
public static let componentChipsChipsInlineSpace = 12
|
|
85
|
+
public static let componentChipsChipsStackSpace = 8
|
|
86
|
+
public static let componentDSysDocs1columnMobile = 656 /** This variable is used only for this design system's component tests. */
|
|
87
|
+
public static let componentDSysDocsBildDesignFrameSpace = 64 /** Variable used in spacing parameters of bild.design webpage mockups. move to bild.design group maybe */
|
|
88
|
+
public static let componentDSysDocsDSysDocsWidthSize = 1440
|
|
89
|
+
public static let componentDSysDocsDocHeaderHeightSize = 180 /** This variable is used on documentation headers that contain info about platfroms and component names. 144 - 144 - 160 - 180 */
|
|
90
|
+
public static let componentDSysDocsDsCaptionStackSpace05x = 8 /** This variable is used in documentation pages that have small caption or lables along with a UI component documented. 4 - 4 - 6 - 8 */
|
|
91
|
+
public static let componentDSysDocsDsCaptionStackSpace1x = 16
|
|
92
|
+
public static let componentDSysDocsDsMainContainerSpace = 68 /** This variable is used on documentation pages. This is an alternative variable to the main container max width variable. 0 - 0 - 68 - 68 */
|
|
93
|
+
public static let componentDSysDocsFoundationsBannerHeightSize = 140 /** This variable is used on documentation pages that have an artistic banner at the top of the page that is related to the foundation topic on the page. 80 - 80 -80 - 140 */
|
|
94
|
+
public static let componentDSysDocsMainContentStageSize = 1024 /** This variable is used as a max width size for content blocks. For mobile devices this var references the DSysDocsWidthSize var 320 - 750 - 962 - 1024 */
|
|
95
|
+
public static let componentDSysDocsSpecsFontFamily = Gotham /** This variable is used only for texts and labels that form part of this design system's documentation. */
|
|
96
|
+
public static let componentDSysDocsThinBannerVerticalHeightSize = 186 /** This variable is currently used on a thin gallery that appears on desktop websites with petbook and other "books" content. Its height changes to a large height on mobile sites. 558 - 558 - 558 - 186 */
|
|
97
|
+
public static let componentDatepickerDatepickerItemDayWidthSize = 44
|
|
98
|
+
public static let componentDatepickerDatepickerItemHeightSize = 44
|
|
99
|
+
public static let componentDatepickerDatepickerItemYearWidthSize = 77
|
|
100
|
+
public static let componentDrawersMobileMenuDrawerLeftInlineSpace = 20
|
|
101
|
+
public static let componentDrawersMobileMenuDrawerMaxWidthSize = 400
|
|
102
|
+
public static let componentDrawersMobileMenuDrawerRightInlineSpace = 16
|
|
103
|
+
public static let componentDrawersMobileMenuDrawerStackSpace = 20
|
|
104
|
+
public static let componentDropdownDropDownBorderRadius = 4
|
|
105
|
+
public static let componentDropdownDropDownItemInlineSpace = 16
|
|
106
|
+
public static let componentDropdownDropDownItemStackSpace = 8
|
|
107
|
+
public static let componentFooterFooterFontFamily = Gotham XNarrow
|
|
108
|
+
public static let componentFooterFooterFontSize = 11 /** This variable is used on footer links that commonly show up at the bottom of pages. The font size parameter remains constant at 11 px across device sizes. */
|
|
109
|
+
public static let componentFooterFooterFontSizeUserOfferPages = 18
|
|
110
|
+
public static let componentFooterFooterLineHeight = 14
|
|
111
|
+
public static let componentFooterFooterLineHeightUserOfferPages = 26
|
|
112
|
+
public static let componentIconIconSize = 24
|
|
113
|
+
public static let componentIconIconSizeEmbeddMedia = 40
|
|
114
|
+
public static let componentInfoElementInfoElementTeaserBadgeHeightSize = 24
|
|
115
|
+
public static let componentInfoElementInfoElementTeaserBadgeMarginSpace = 8
|
|
116
|
+
public static let componentInfoElementInfoElementTeaserImageHeightSize = 133
|
|
117
|
+
public static let componentInfoElementInfoElementTeaserImageWidthSize = 236
|
|
118
|
+
public static let componentInputfieldHeyInputContainerInlineSpace = 16
|
|
119
|
+
public static let componentInputfieldInputFieldFontFamily = Gotham XNarrow
|
|
120
|
+
public static let componentInputfieldInputFieldFontSize = 16 /** This variable controls texts inside of input fields such as dropdowns, date input and other text inputs that appear in forms for example. compact 15 - default 17 - spacious 19 */
|
|
121
|
+
public static let componentInputfieldInputFieldHeightSize = 36
|
|
122
|
+
public static let componentInputfieldInputFieldIMessageInlineSpace = 16
|
|
123
|
+
public static let componentInputfieldInputFieldInlineSpace = 16
|
|
124
|
+
public static let componentInputfieldInputFieldMessageGapSpace = 4
|
|
125
|
+
public static let componentInputfieldInputFieldMiniLabelInlineSpace = 4
|
|
126
|
+
public static let componentInputfieldInputFieldStackSpace = 6
|
|
127
|
+
public static let componentLivetickerLiveTickerAppCardHeightSize = 128
|
|
128
|
+
public static let componentLivetickerLiveTickerAppCardWidthSize = 300
|
|
129
|
+
public static let componentLivetickerLiveTickerHeadlinesFontSize = 32 /** This variable is used for the font size of live ticker headlines. 22 - 22 - 32 - 32 */
|
|
130
|
+
public static let componentLivetickerLiveTickerSliderItemWidthMaxSize = 537
|
|
131
|
+
public static let componentLivetickerLiveTickerTimeHeadlineStackSpace = 4
|
|
132
|
+
public static let componentLivetickerLiveTickerTimeStampFontSize = 16 /** This variable is used for the live ticker time stamp font size. 14 - 14 - 16 - 16 */
|
|
133
|
+
public static let componentLivetickerLiveTickerheadlineFontWeight = 600
|
|
134
|
+
public static let componentLivetickerTimeStampFontFamily = Gotham XNarrow
|
|
135
|
+
public static let componentMediaplayerAudioPlayerHeaderStackSpace = 56
|
|
136
|
+
public static let componentMediaplayerPodcastPlayButtonSize = 48
|
|
137
|
+
public static let componentMediaplayerVidPlayerBottomBarGapSpace = 16
|
|
138
|
+
public static let componentMediaplayerVidPlayerControlButtonIconSizeHover = 28
|
|
139
|
+
public static let componentMediaplayerVidPlayerControlButtonSize = 42
|
|
140
|
+
public static let componentMediaplayerVidPlayerProgressBarContainerHeightSize = 42
|
|
141
|
+
public static let componentMediaplayerVidPlayerTimecodeContainerMinWidthSize = 58
|
|
142
|
+
public static let componentMediaplayerVidPlayerTimecodeFontSize = 18
|
|
143
|
+
public static let componentMediaplayerVidPlayerUnmuteButtonWidthSize = 220
|
|
144
|
+
public static let componentMediaplayerVideoTimeBadgeFontFamily = Gotham XNarrow
|
|
145
|
+
public static let componentMenuAppTopbarStageTitleHeight = 17
|
|
146
|
+
public static let componentMenuAppTopbarTitleFontSize = 14
|
|
147
|
+
public static let componentMenuHeyInputShadowVisibility = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.1) /** This color type variables are only in this semantic collection for making subtle shadow effects change visibility across device sizes. Shadow alpha: 0 - 0 - 0 - 10 */
|
|
148
|
+
public static let componentMenuIOSappTopBarHeightSize = 48
|
|
149
|
+
public static let componentMenuIOSappTopBarLeftInlineSpace = 19
|
|
150
|
+
public static let componentMenuIOSappTopBarRightInlineSpace = 19
|
|
151
|
+
public static let componentMenuMenuBottomStackSpace = 0
|
|
152
|
+
public static let componentMenuMenuItemFontSize = 15 /** This variable is used on the menu link lane and on the mobile side menu drawer. */
|
|
153
|
+
public static let componentMenuMenuItemSpace = 8
|
|
154
|
+
public static let componentMenuMenuItemUtilFontSize = 12
|
|
155
|
+
public static let componentMenuMenuItemUtilStackSpace = 10
|
|
156
|
+
public static let componentMenuMenuLeftInlineSpace = 16
|
|
157
|
+
public static let componentMenuMenuLinkItemInlineSpace = 4
|
|
158
|
+
public static let componentMenuMenuLinkLaneHeightSize = 48
|
|
159
|
+
public static let componentMenuMenuLogoDefaultSize = 148
|
|
160
|
+
public static let componentMenuMenuLogoScrolledSize = 56
|
|
161
|
+
public static let componentMenuMenuRightInlineSpace = 16
|
|
162
|
+
public static let componentMenuMenuShadowVisibility = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0) /** This color type variables are only in this semantic collection for making subtle shadow effects change visibility across device sizes. Shadow alpha: 10 - 10 - 10 - 0 */
|
|
163
|
+
public static let componentMenuMenuSpecialNaviItemHeightSize = 56
|
|
164
|
+
public static let componentMenuMenuTopStackSpace = 12
|
|
165
|
+
public static let componentMenuMenuUtilityLinksContainerHeightSize = 100
|
|
166
|
+
public static let componentMenuMenuUtilityLinksDividerHeightSize = 48
|
|
167
|
+
public static let componentMenuMenuUtilityLinksGapSpace = 32
|
|
168
|
+
public static let componentMenuMenuUtillinkItemHeightSize = 48
|
|
169
|
+
public static let componentMenuSubNavBarHeightSize = 42
|
|
170
|
+
public static let componentNewstickerNewsTickerAppCardHeightSize = 150
|
|
171
|
+
public static let componentNewstickerNewsTickerAppCardWidthSize = 300
|
|
172
|
+
public static let componentNewstickerNewsTickerBadgesInlineSpace = 16
|
|
173
|
+
public static let componentNewstickerNewsTickerContentStackSpace = 4
|
|
174
|
+
public static let componentNewstickerNewsTickerEntriesLeftInlineSpace = 22
|
|
175
|
+
public static let componentNewstickerNewsTickerEntriesStackSpace = 22
|
|
176
|
+
public static let componentNewstickerNewsTickerKickerInnerInlineSpace = 4
|
|
177
|
+
public static let componentNewstickerNewsTickerKickerInnerStackSpace = 2
|
|
178
|
+
public static let componentNewstickerNewsTickerLineInlineSpace = 8
|
|
179
|
+
public static let componentNewstickerNewsTickerRedDotSize = 16
|
|
180
|
+
public static let componentNewstickerNewsTickerSkeletonBottomSpace = 0
|
|
181
|
+
public static let componentNewstickerNewsTickerTimeFontFamily = Gotham XNarrow
|
|
182
|
+
public static let componentNewstickerNewsTickerTimeFontSize = 18 /** similar to kicker3 values - 16 - 16 - 16 - 18 */
|
|
183
|
+
public static let componentNewstickerNewsTickerTimeFontWeight = 700
|
|
184
|
+
public static let componentNewstickerNewsTickerTimeKickerStackSpace = 6
|
|
185
|
+
public static let componentNewstickerNewsTickerTimeLineHeight = 23.4 /** Figma currently does not allow for percentages in Line Height variables. The values in this token are the result of multiplying the font size by the line height variable defined on the Bild home css -> newsTickerTime line height: 1.3. Line height for this component does not change across devices. */
|
|
186
|
+
public static let componentNewstickerNewsTickerTitlesInlineSpace = 30
|
|
187
|
+
public static let componentPaginationGalleryPaginationContainerAppInlineSpace = 12
|
|
188
|
+
public static let componentPaginationGalleryPaginationContainerStackSpace = 16 /** 12 - 12 - 16 - 16 - this component level variable references the semantic */
|
|
189
|
+
public static let componentPaginationGalleryPaginationContainerWebInlineSpace = 12 /** 8 - 8 - 12 - 12 - this component level variable references the inlineSpaceConst semantic variables; SM for smaller devices, MD for larger devices */
|
|
190
|
+
public static let componentPaginationGalleryPaginationItemHeightSize = 4
|
|
191
|
+
public static let componentPaginationScrollBarThicknessSize = 8
|
|
192
|
+
public static let componentPaywallPaywallCardMaxWidthSize = 346
|
|
193
|
+
public static let componentPaywallPaywallCardPriceNoteFontSize = 40 /** This variable is used on the paywall card text under the price tag. 40 - 40 - 40 - 40 */
|
|
194
|
+
public static let componentPaywallPaywallCardPriceNoteLineHeight = 40
|
|
195
|
+
public static let componentPaywallPaywallCardPriceTagFontSize = 64 /** This variable is used on the paywall card price tag. 64 constant */
|
|
196
|
+
public static let componentPaywallPaywallCardPriceTagLineHeight = 64
|
|
197
|
+
public static let componentPaywallPaywallContainerGapSpace = -48
|
|
198
|
+
public static let componentPaywallPaywallHeaderBottomStackSpace = 80
|
|
199
|
+
public static let componentQuotesQuoteContainerInlineSpace = 28
|
|
200
|
+
public static let componentQuotesQuoteContainerStackSpace = 32
|
|
201
|
+
public static let componentQuotesQuoteContentGapSpace = 48
|
|
202
|
+
public static let componentQuotesQuoteQuotationMarksFontSize = 36
|
|
203
|
+
public static let componentRadioButtonsRadioSelectorDotActiveSize = 12
|
|
204
|
+
public static let componentRadioButtonsRadioSelectorSize = 20
|
|
205
|
+
public static let componentSearchSearchResultBadgeHeightSize = 18
|
|
206
|
+
public static let componentSectionTitleSectionTitleArrowInlineSpace = 5 /** This variable is used on large title headings that are h2 elements in html and indicate a new section in the user interface. This space changes when a user hovers over the large title. */
|
|
207
|
+
public static let componentSectionTitleSectionTitleArrowInlineSpaceActive = 8 /** This variable is used for increasing the space between the text and the arrow at the end of the large title text. On mobile devices there is no hover state so this variables values are the same as the default state values. */
|
|
208
|
+
public static let componentSectionTitleSectionTitleHeightSize = 40
|
|
209
|
+
public static let componentSectionTitleSectionTitleInnerStackBottomSpace = 12
|
|
210
|
+
public static let componentSeparatorsSeparatorThicknessSize = 2
|
|
211
|
+
public static let componentSkeletonsArticleSkeletonImageInlineSpace = 48
|
|
212
|
+
public static let componentSkeletonsArticleSkeletonTextInlineSpace = 48
|
|
213
|
+
public static let componentSkeletonsArticleTextSkeletonHeightSize = 720
|
|
214
|
+
public static let componentSkeletonsHeadlinesSkeletonImagePlaceholderMaxWidth = 160
|
|
215
|
+
public static let componentSlidersSliderProgressBarHoverHeightSize = 8
|
|
216
|
+
public static let componentSlidersSliderProgressBarIdleHeightSize = 4
|
|
217
|
+
public static let componentSlidersSliderProgressInactiveHeightSize = 2
|
|
218
|
+
public static let componentSlidersVidPlayerProgressBarHeightSize = 12
|
|
219
|
+
public static let componentSpecialNaviSpecialNaviInlineSpace = 32
|
|
220
|
+
public static let componentSpinnersVideoSpinnerSize = 80
|
|
221
|
+
public static let componentSpinnersVideoSpinnerSize05x = 40
|
|
222
|
+
public static let componentSpinnersVideoSpinnerStrokeSize = 4
|
|
223
|
+
public static let componentTableTableColumnWidthSize05x = 72
|
|
224
|
+
public static let componentTableTableColumnWidthSize075x = 100
|
|
225
|
+
public static let componentTableTableColumnWidthSize15x = 180
|
|
226
|
+
public static let componentTableTableColumnWidthSize1x = 140
|
|
227
|
+
public static let componentTableTableColumnWidthSize25x = 240
|
|
228
|
+
public static let componentTableTableColumnWidthSize2x = 220
|
|
229
|
+
public static let componentTableTableColumnWidthSize3x = 280
|
|
230
|
+
public static let componentTableTableItemMaxWidthSize = 224
|
|
231
|
+
public static let componentTabsAndroidTabbarHeightSize = 74
|
|
232
|
+
public static let componentTabsAppsTabsLabelFontSize = 16 /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
|
|
233
|
+
public static let componentTabsAppsTabsLabelLineHeight = 23.4 /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
|
|
234
|
+
public static let componentTabsIosTabbarHeightSize = 49
|
|
235
|
+
public static let componentTabsTabLabelFontSize = 16 /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
|
|
236
|
+
public static let componentTabsTabLabelFontSizeLine = 16 /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
|
|
237
|
+
public static let componentTabsTopBarTabItemHeightSize = 44
|
|
238
|
+
public static let componentTeaserATeaserATeaserHeadlineFontSize = 64 /** This variable references the semantic variables headline3 (XS&SM) and headline2 (MD&LG). 28 - 28 - 48 - 64 */
|
|
239
|
+
public static let componentTeaserATeaserATeaserHeadlineLineHeight = 64
|
|
240
|
+
public static let componentTeaserATeaserATeaserKickerFontSize = 24 /** 16 - 16 - 22 - 24 This variable references the semantic variables kicker3fontsize and kicker2fontsize. At the 600px breakpoint smaller devices use the kicker3 variable */
|
|
241
|
+
public static let componentTeaserATeaserATeaserKickerLineHeight = 24
|
|
242
|
+
public static let componentTeaserATeaserATeaserTitleInlineSpace = 12
|
|
243
|
+
public static let componentTeaserBTeaserBTeaserTitleInlineSpace = 8
|
|
244
|
+
public static let componentTeaserBildPlayBildPlayTeaserWidthSize = 193
|
|
245
|
+
public static let componentTeaserMQTeaserMQTeaserHeadlineFontSize = 40 /** XS-headline4FontSize:22 // SM-headline4FontSize:22 // MD-headline3FontSize:36 // LG-headline3FontSize:40 */
|
|
246
|
+
public static let componentTeaserMQTeaserMQTeaserHeadlineFontWeight = 700
|
|
247
|
+
public static let componentTeaserMQTeaserMQTeaserHeadlineLineHeight = 40
|
|
248
|
+
public static let componentTeaserMQTeaserMqTeaserTitleInlineSpace = 8
|
|
249
|
+
public static let componentTeaserQTeaserQTeaserTitleInlineSpace = 12
|
|
250
|
+
public static let componentTeaserQTeaserQuadHeadlineFontSize = 100 /** This component level variable is used on the quad teaser headline. It references the semantic level variable headline1. 48 - 48 - 72 - 100 */
|
|
251
|
+
public static let componentTeaserQTeaserQuadHeadlineLineHeight = 100
|
|
252
|
+
public static let componentTeaserQTeaserQuadKickerFontSize = 24
|
|
253
|
+
public static let componentTeaserStdTeaserStdTeaserBadgesMarginSpace = 8 /** This variable is used for creating space around the outside of a subscription badge or video icon badge. */
|
|
254
|
+
public static let componentTeaserStdTeaserStdTeaserImageTitleGapSpace = 6
|
|
255
|
+
public static let componentTeaserStdTeaserStdTeaserKickerHeadlineStackSpace = 2 /** 2 | 2 | 2 | 2 - This variable is used on the standard teaser vertical spacing between the kicker and the headline. It references the semantic variable stackSpaceConst3XS */
|
|
256
|
+
public static let componentTeaserSuperASuperATeaserTitleInlineSpace = 16 /** 16 - 16 - 16 - 16 */
|
|
257
|
+
public static let componentTeaserTeaserBadgesHeightSizeLg = 40 /** This token is for controling the height of badges that are inside of teasers. 32 - 32 - 32 - 40 */
|
|
258
|
+
public static let componentTeaserTeaserBadgesHeightSizeSm = 32
|
|
259
|
+
public static let componentTeaserTeaserBadgesMarginSpace = 8 /** This variable is used for creating space around the outside of a subscription badge or video icon badge. */
|
|
260
|
+
public static let componentTeaserTeaserKickerBgInlineSpace = 6
|
|
261
|
+
public static let componentTeaserTeaserKickerBgStackSpace = 2
|
|
262
|
+
public static let componentTeaserTeaserLayoutGridSpace = 16
|
|
263
|
+
public static let componentTeaserTeaserTitleBottomStackSpace = 16
|
|
264
|
+
public static let componentTeaserTeaserTitleGapSpace = 4
|
|
265
|
+
public static let componentTeaserTeaserTitleInlineLeftSpace = 0
|
|
266
|
+
public static let componentTeaserTeaserTitleStackSpace = 6
|
|
267
|
+
public static let componentToggleSwitchAppToggleItemLabelFontSize = 18 /** This variable is used on labels in list items with toggle switches found in app preferences. 14 - 14 - 16 - 18 */
|
|
268
|
+
public static let componentToggleSwitchAppToggleItemLabelLineHeight = 18.2 /** This variable is used on labels in list items with toggle switches found in app preferences. 14.1 - 14.1 - 16.2 - 18.2 */
|
|
269
|
+
public static let componentVideoVerticalVideoMockHeadlineFontSize = 32
|
|
270
|
+
public static let componentVideoVideoAdBadgeFontSize = 16 /** 14 - 14 - 16 - 16 -- This variable is used in the videoAdBadge font size parameter. */
|
|
271
|
+
public static let componentVideoVideoBadgeTimeLineHeight = 23.8
|
|
272
|
+
public static let componentVideoVideoFrameInlineSpace = 16
|
|
273
|
+
public static let componentVideoVideoRedPlayIconHeightSize = 18 /** This variable is used for changing the red play icon inside the white square. */
|
|
274
|
+
public static let componentVideoVideoRedPlayIconWidthSize = 14
|
|
275
|
+
public static let componentVideoVideoSkeletonContainerHeight = 464
|
|
276
|
+
public static let componentVideoVideoTimeBadgeCornerSize = 2 /** This variable is used on video player badges that display a red play icon on top of a white square next to a time stamp. This variable references the borderRadiusXS. Constant value of 2 across device sizes. */
|
|
277
|
+
public static let componentVideoVideoTimeBadgeFontSize = 18 /** 16 - 16 - 18 - 18 -- This variable is used to control the videoTimeBadge text style's font size parameter. The typography style that uses this variable is the videoTimeBadge style. The badge that uses this variable appears on the upper right corner of horizontal videos. */
|
|
278
|
+
public static let componentVideoVideoTimeBadgeSize = 40 /** 24 - 24 - 32 - 40 - This variable is used on horizontal video badges that contain a red play icon on top of a white square next to a timestamp. */
|
|
279
|
+
public static let semanticBorderBorderRadiusBorderRadiusFull = 9999 /** creates fully rounded shapes, typically used for circular elements like avatars. */
|
|
280
|
+
public static let semanticBorderBorderRadiusBorderRadiusLg = 16 /** 16-16-16-16 – use for corner rounding on small cards, overlays, and modal surfaces. */
|
|
281
|
+
public static let semanticBorderBorderRadiusBorderRadiusMd = 8 /** 8-8-8-8 – Standard radius for buttons, chips, input fields, and medium-sized interactive elements. */
|
|
282
|
+
public static let semanticBorderBorderRadiusBorderRadiusNone = 0 /** 0-0-0-0 – no corner rounding. Used as default for flat layouts, content modules, images, and teaser elements. */
|
|
283
|
+
public static let semanticBorderBorderRadiusBorderRadiusSm = 4 /** 4-4-4-4 – use for corner rounding on compact components like checkboxes or small input controls. */
|
|
284
|
+
public static let semanticBorderBorderRadiusBorderRadiusXl = 24 /** 24-24-24-24 – use for corner rounding on larger cards, overlays, dialogs, and other container components. */
|
|
285
|
+
public static let semanticBorderBorderRadiusBorderRadiusXs = 2 /** 2-2-2-2 use for corner rounding on very small UI elements such as tooltips and badges. */
|
|
286
|
+
public static let semanticBorderBorderWidthBorderWidthHairline = 0.33 /** 0.33 -0.33 -0.33 -0.33 – primarily used in mobile app interfaces. Optimized for high-density displays to create subtle dividers and outlines without visual overload. */
|
|
287
|
+
public static let semanticBorderBorderWidthBorderWidthThick = 2 /** 2-2-2-2 – use for stronger outlines on form elements (inputs), buttons (outline variants), and interaction states (focus, hover, active) */
|
|
288
|
+
public static let semanticBorderBorderWidthBorderWidthThin = 1 /** 1-1-1-1 – use for subtle outlines and dividers */
|
|
289
|
+
public static let /**
|
|
290
|
+
* 389 - 599 - 1023 - 1024 – Defines the minimum width of the main frame for different breakpoints.
|
|
291
|
+
* Apply this token to the main frame of page layouts to simulate realistic maximum widths across responsive viewports.
|
|
292
|
+
*/
|
|
293
|
+
semanticLayoutBreakpointsBreakpointMaxWidthSize = 1024
|
|
294
|
+
public static let /**
|
|
295
|
+
* 320 - 390 - 600 - 1024 – Defines the minimum width of the main frame for different breakpoints.
|
|
296
|
+
* Apply this token to the main frame of page layouts to simulate realistic minimum widths across responsive viewports.
|
|
297
|
+
*/
|
|
298
|
+
semanticLayoutBreakpointsBreakpointMinWidthSize = 1024
|
|
299
|
+
public static let /**
|
|
300
|
+
* Common viewport height size based on the selected mode.
|
|
301
|
+
* Apply this token to the main frame of page layouts to simulate realistic vertical space.
|
|
302
|
+
*/
|
|
303
|
+
semanticLayoutCanvasHeightSizeApp = 834
|
|
304
|
+
public static let /**
|
|
305
|
+
* Common viewport height size based on the selected mode.
|
|
306
|
+
* Apply this token to the main frame of page layouts to simulate realistic vertical space.
|
|
307
|
+
*/
|
|
308
|
+
semanticLayoutCanvasHeightSizeWeb = 768
|
|
309
|
+
public static let /**
|
|
310
|
+
* Common viewport width size based on the selected breakpoint.
|
|
311
|
+
* Apply this token to the main frame of page layouts.
|
|
312
|
+
*/
|
|
313
|
+
semanticLayoutCanvasWidthSizeApp = 1194
|
|
314
|
+
public static let /**
|
|
315
|
+
* Common viewport width size based on the selected breakpoint.
|
|
316
|
+
* Apply this token to the main frame of page layouts.
|
|
317
|
+
*/
|
|
318
|
+
semanticLayoutCanvasWidthSizeWeb = 1024
|
|
319
|
+
public static let semanticLayoutContentWidthContentMaxWidthFull = 1024 /** Use for content containers that should fill the full width of the page */
|
|
320
|
+
public static let semanticLayoutContentWidthContentMaxWidthMedium = 700 /** Use for content containers that should not fill the full page width on larger viewports. This is commonly used on article body text content and other elements in an article page. */
|
|
321
|
+
public static let semanticLayoutGridConstantGridSpaceConstLg = 16 /** 16-16-16-16 – use for fixed side paddings and gutters */
|
|
322
|
+
public static let semanticLayoutGridConstantGridSpaceConstSm = 12 /** 12-12-12-12 – use for fixed side paddings and gutters */
|
|
323
|
+
public static let semanticLayoutGridLayoutGuideLayoutGuideGridColums = 12 /** Used to set the column count in Figma Layout guide Grids */
|
|
324
|
+
public static let semanticLayoutGridResponsiveGridSpaceRespBase = 16 /** 12-12-12-16 – use for side paddings and gutters in responsive layouts */
|
|
325
|
+
public static let semanticLayoutGridResponsiveGridSpaceRespLg = 32 /** 24-24-32-32 – use for side paddings and gutters in responsive layouts */
|
|
326
|
+
public static let semanticLayoutGridResponsiveGridSpaceRespSm = 8 /** 6-6-6-8 – use for side paddings and gutters in responsive layouts */
|
|
327
|
+
public static let semanticLayoutGridResponsiveGridSpaceRespXl = 64 /** 48-48-64-64 – use for side paddings and gutters in responsive layouts */
|
|
328
|
+
public static let semanticLayoutGridResponsivePageInlineSpace = 16 /** 0-0-0-16 – This token is used on the main homepages content container, ensuring full-width layout (no horizontal padding) on mobile and tablet breakpoints. */
|
|
329
|
+
public static let semanticLayoutSectionParagraphEndSpace = 32 /** 16-16-32-32 – Use for spacing after paragraphs in text content */
|
|
330
|
+
public static let semanticLayoutSectionSectionSpaceBase = 48 /** 36-36-48-48 – Use for vertical spacing between sections in a layout. */
|
|
331
|
+
public static let semanticLayoutSectionSectionSpaceLg = 96 /** 72-72-96-96 – Use for vertical spacing between sections in a layout */
|
|
332
|
+
public static let semanticLayoutSectionSectionSpaceSm = 36 /** 24-24-36-36 – Use for vertical spacing between subsections in a layout */
|
|
333
|
+
public static let semanticSizeConstantSizeConst2Xl = 72 /** 72-72-72-72 – Use for setting fixed height and width of UI elements */
|
|
334
|
+
public static let semanticSizeConstantSizeConst2Xs = 24 /** 24-24-24-24 – Use for setting fixed height and width of UI elements */
|
|
335
|
+
public static let semanticSizeConstantSizeConst3Xl = 96 /** 96-96-96-96 – Use for setting fixed height and width of UI elements */
|
|
336
|
+
public static let semanticSizeConstantSizeConst3Xs = 16 /** 16-16-16-16 – Use for setting fixed height and width of UI elements */
|
|
337
|
+
public static let semanticSizeConstantSizeConst4Xl = 148 /** 148-148-148-148 – Use for setting fixed height and width of UI elements */
|
|
338
|
+
public static let semanticSizeConstantSizeConst4Xs = 8 /** 8-8-8-8 – Use for setting fixed height and width of UI elements */
|
|
339
|
+
public static let semanticSizeConstantSizeConstLg = 56 /** 56-56-56-56 – Use for setting fixed height and width of UI elements */
|
|
340
|
+
public static let semanticSizeConstantSizeConstMd = 48 /** 48-48-48-48 Use for setting fixed height and width of UI elements */
|
|
341
|
+
public static let semanticSizeConstantSizeConstSm = 40 /** 40-40-40-40 – Use for setting fixed height and width of UI elements */
|
|
342
|
+
public static let semanticSizeConstantSizeConstXl = 64 /** 64-64-64-64 – Use for setting fixed height and width of UI elements */
|
|
343
|
+
public static let semanticSizeConstantSizeConstXs = 32 /** 32-32-32-32 – Use for setting fixed height and width of UI elements */
|
|
344
|
+
public static let semanticSizeResponsiveSizeResp2Xl = 100 /** 72-72-92-100 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
345
|
+
public static let semanticSizeResponsiveSizeResp2Xs = 32 /** 24-24-32-32 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
346
|
+
public static let semanticSizeResponsiveSizeResp3Xl = 148 /** 96-96-120-148 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
347
|
+
public static let semanticSizeResponsiveSizeResp3Xs = 24 /** 16-16-16-24 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
348
|
+
public static let semanticSizeResponsiveSizeResp4Xl = 180 /** 148-148-160-180 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
349
|
+
public static let semanticSizeResponsiveSizeResp4Xs = 16 /** 12-12-14-16 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
350
|
+
public static let semanticSizeResponsiveSizeRespLg = 92 /** 56-56-72-92 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
351
|
+
public static let semanticSizeResponsiveSizeRespMd = 72 /** 48-48-64-72 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
352
|
+
public static let semanticSizeResponsiveSizeRespSm = 56 /** 40-40-48-56 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
353
|
+
public static let semanticSizeResponsiveSizeRespXl = 96 /** 64-64-80-96 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
354
|
+
public static let semanticSizeResponsiveSizeRespXs = 48 /** 32-32-40-48 – Use for setting height and width of UI elements that scale across breakpoints */
|
|
355
|
+
public static let semanticSpaceGapConstantGapSpaceConst2Xl = 32 /** 32-32-32-32 – Use for fixed gaps between items inside of UI elements */
|
|
356
|
+
public static let semanticSpaceGapConstantGapSpaceConst2Xs = 2 /** 2-2-2-2 – Use for fixed gaps between items inside of UI elements */
|
|
357
|
+
public static let semanticSpaceGapConstantGapSpaceConst3Xl = 48 /** 48-48-48-48 – Use for fixed gaps between items inside of UI elements */
|
|
358
|
+
public static let semanticSpaceGapConstantGapSpaceConstLg = 16 /** 16-16-16-16 – Use for fixed gaps between items inside of UI elements */
|
|
359
|
+
public static let semanticSpaceGapConstantGapSpaceConstMd = 12 /** 12-12-12-12 – Use for fixed gaps between items inside of UI elements */
|
|
360
|
+
public static let semanticSpaceGapConstantGapSpaceConstSm = 8 /** 8-8-8-8 – Use for fixed gaps between items inside of UI elements */
|
|
361
|
+
public static let semanticSpaceGapConstantGapSpaceConstXl = 24 /** 24-24-24-24 – Use for fixed gaps between items inside of UI elements */
|
|
362
|
+
public static let semanticSpaceGapConstantGapSpaceConstXs = 4 /** 4-4-4-4 – Use for fixed gaps between items inside of UI elements */
|
|
363
|
+
public static let semanticSpaceGapResponsiveGapSpaceResp2Xl = 64 /** 32-32-48-64 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
364
|
+
public static let semanticSpaceGapResponsiveGapSpaceResp2Xs = 6 /** 2-2-4-6 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
365
|
+
public static let semanticSpaceGapResponsiveGapSpaceResp3Xl = 96 /** 48-48-72-96 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
366
|
+
public static let semanticSpaceGapResponsiveGapSpaceRespLg = 32 /** 16-16-24-32 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
367
|
+
public static let semanticSpaceGapResponsiveGapSpaceRespMd = 24 /** 12-12-16-24 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
368
|
+
public static let semanticSpaceGapResponsiveGapSpaceRespSm = 16 /** 8-8-12-16 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
369
|
+
public static let semanticSpaceGapResponsiveGapSpaceRespXl = 48 /** 24-24-32-48 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
370
|
+
public static let semanticSpaceGapResponsiveGapSpaceRespXs = 8 /** 4-4-6-8 – Use for gaps between items inside of UI elements that scale across breakpoints */
|
|
371
|
+
public static let semanticSpaceInlineConstantInlineSpaceConst2Xl = 32 /** 32-32-32-32 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
372
|
+
public static let semanticSpaceInlineConstantInlineSpaceConst2Xs = 4 /** 4-4-4-4 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
373
|
+
public static let semanticSpaceInlineConstantInlineSpaceConst3Xs = 2 /** 2-2-2-2 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
374
|
+
public static let semanticSpaceInlineConstantInlineSpaceConstLg = 16 /** 16-16-16-16 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
375
|
+
public static let semanticSpaceInlineConstantInlineSpaceConstMd = 12 /** 12-12-12-12 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
376
|
+
public static let semanticSpaceInlineConstantInlineSpaceConstSm = 8 /** 8-8-8-8 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
377
|
+
public static let semanticSpaceInlineConstantInlineSpaceConstXl = 24 /** 24-24-24-24 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
378
|
+
public static let semanticSpaceInlineConstantInlineSpaceConstXs = 6 /** 6-6-6-6 – Use for fixed horizontal (left/right) padding of UI elements */
|
|
379
|
+
public static let semanticSpaceInlineResponsiveInlineSpaceResp2Xl = 64 /** 32-32-48-64 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
|
|
380
|
+
public static let semanticSpaceInlineResponsiveInlineSpaceRespLg = 32 /** 16-16-24-32 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
|
|
381
|
+
public static let semanticSpaceInlineResponsiveInlineSpaceRespMd = 24 /** 12-12-16-24 use for horizontal (left/right) padding of UI elements that scales across breakpoints */
|
|
382
|
+
public static let semanticSpaceInlineResponsiveInlineSpaceRespSm = 16 /** 8-8-12-16 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
|
|
383
|
+
public static let semanticSpaceInlineResponsiveInlineSpaceRespXl = 40 /** 24-24-32-40 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
|
|
384
|
+
public static let semanticSpaceStackConstantStackSpaceConst2Xl = 32 /** 32-32-32-32 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
385
|
+
public static let semanticSpaceStackConstantStackSpaceConst2Xs = 4 /** 4-4-4-4 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
386
|
+
public static let semanticSpaceStackConstantStackSpaceConst3Xs = 2 /** 2-2-2-2 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
387
|
+
public static let semanticSpaceStackConstantStackSpaceConstLg = 16 /** 16-16-16-16 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
388
|
+
public static let semanticSpaceStackConstantStackSpaceConstMd = 12 /** 12-12-12-12 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
389
|
+
public static let semanticSpaceStackConstantStackSpaceConstSm = 8 /** 8-8-8-8 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
390
|
+
public static let semanticSpaceStackConstantStackSpaceConstXl = 24 /** 24-24-24-24 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
391
|
+
public static let semanticSpaceStackConstantStackSpaceConstXs = 6 /** 6-6-6-6 – Use for fixed vertical (top/bottom) padding of UI elements */
|
|
392
|
+
public static let semanticSpaceStackResponsiveStackSpaceResp2Xl = 64 /** 32-32-48-64 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
|
|
393
|
+
public static let semanticSpaceStackResponsiveStackSpaceRespLg = 32 /** 16-16-24-32 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
|
|
394
|
+
public static let semanticSpaceStackResponsiveStackSpaceRespMd = 24 /** 12-12-16-24 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
|
|
395
|
+
public static let semanticSpaceStackResponsiveStackSpaceRespSm = 16 /** 8-8-12-16 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
|
|
396
|
+
public static let semanticSpaceStackResponsiveStackSpaceRespXl = 40 /** 24-24-32-40 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
|
|
397
|
+
public static let semanticTypographyFontFamilyBodyFontFamily = Gotham XNarrow /** This variable references the bodyFontFamily variable from the branding collection. */
|
|
398
|
+
public static let semanticTypographyFontFamilyCalloutFontFamily = Gotham
|
|
399
|
+
public static let semanticTypographyFontFamilyDisplayFontFamily = Gotham
|
|
400
|
+
public static let semanticTypographyFontFamilyFootnoteFontFamily = Gotham XNarrow
|
|
401
|
+
public static let semanticTypographyFontFamilyHeadlineFontFamily = Gotham Condensed
|
|
402
|
+
public static let semanticTypographyFontFamilyKickerFontFamily = Gotham XNarrow
|
|
403
|
+
public static let semanticTypographyFontFamilyLabelFontFamily = Gotham XNarrow
|
|
404
|
+
public static let semanticTypographyFontFamilyQuoteFontFamily = Gotham
|
|
405
|
+
public static let semanticTypographyFontFamilySubheadlineFontFamily = Gotham Condensed
|
|
406
|
+
public static let semanticTypographyFontFamilyTitleFontFamily = Gotham
|
|
407
|
+
public static let semanticTypographyFontSizeBodyBodyFontSize = 21 /** This variable is used on the body text style's font size parameter. It remains constant at 21. */
|
|
408
|
+
public static let semanticTypographyFontSizeCalloutCallout1FontSize = 22 /** This token is used for the font size parameter of the callout text style. 18 - 18 - 22 - 22 */
|
|
409
|
+
public static let semanticTypographyFontSizeDisplayDisplay1FontSize = 120 /** This variable is used on the font size parameter for the display1 text style. 40 - 40 - 72 - 120 */
|
|
410
|
+
public static let semanticTypographyFontSizeDisplayDisplay2FontSize = 64 /** This variable is used for the font size parameter of the Display2 text style. 36 - 36 - 42 - 64 */
|
|
411
|
+
public static let semanticTypographyFontSizeDisplayDisplay3FontSize = 40 /** This variable is used on the display3 font size parameter of the display3 text style. 28 - 28 - 32 - 40 */
|
|
412
|
+
public static let semanticTypographyFontSizeFootnoteFootnote1FontSize = 18 /** This token is used on the footnote text style font size parameter. 16 - 16 - 16 - 18 */
|
|
413
|
+
public static let semanticTypographyFontSizeFootnoteFootnote2FontSize = 16 /** This token is used in the font size parameter of the footnote2 text style. 12 - 12 - 12 - 16 */
|
|
414
|
+
public static let semanticTypographyFontSizeHeadlineHeadline1FontSize = 100 /** This token is used for the headline1 text style's font size parameter. 48 - 48 - 72 - 100 */
|
|
415
|
+
public static let semanticTypographyFontSizeHeadlineHeadline2FontSize = 64 /** This token is used on the headline2 text style's font size parameter. 40 - 40 - 48 - 64 */
|
|
416
|
+
public static let semanticTypographyFontSizeHeadlineHeadline3FontSize = 40 /** This token is used on the headline3 text style's font size parameter. 28 - 28 - 36 - 40 */
|
|
417
|
+
public static let semanticTypographyFontSizeHeadlineHeadline4FontSize = 32 /** This token controls the headline4 text style's font size parameter: 22 - 22 - 26 - 32 */
|
|
418
|
+
public static let semanticTypographyFontSizeKickerKicker1FontSize = 30 /** Values come from NMT Figma File 01_Foundation; in online CSS this is kicker0. 18 - 18 - 22 - 30 - This variable does not exist yet in online css. Online css is called kicker0 for smallest font size. */
|
|
419
|
+
public static let semanticTypographyFontSizeKickerKicker2FontSize = 24 /** Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. This DS uses 1 to 4 following html convention of h1, h2, h3, etc. 18 - 18 - 22 - 24 */
|
|
420
|
+
public static let semanticTypographyFontSizeKickerKicker3FontSize = 20 /** Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. 16 - 16 - 18 - 20 */
|
|
421
|
+
public static let semanticTypographyFontSizeKickerKicker4FontSize = 16 /** Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. 14 - 14 - 16 - 16 */
|
|
422
|
+
public static let semanticTypographyFontSizeLabelLabel1FontSize = 17 /** This token is used in the label1 text style font size parameter. Its value remains constant at 17 across device sizes. */
|
|
423
|
+
public static let semanticTypographyFontSizeLabelLabel1FontSizeResponsive = 17 /** 10 - 10 - 15 - 17 Use this label font size when you want your label's font size to change across device sizes. */
|
|
424
|
+
public static let semanticTypographyFontSizeLabelLabel2FontSize = 15 /** This variable controls the label2 text style's font size parameter. Its value remains constant at 15. */
|
|
425
|
+
public static let semanticTypographyFontSizeLabelLabel3FontSize = 12 /** This token is used in the label3 text style's font size parameter. Its value remains constant at 12 across device sizes. */
|
|
426
|
+
public static let semanticTypographyFontSizeLabelLabel4FontSize = 8 /** This token is used in the font size parameter of the label4 text style. The value remains constant at 8. */
|
|
427
|
+
public static let semanticTypographyFontSizeQuoteQuoteFontSize = 20 /** 16 - 16 - 18 - 20 -- This variable is used for controlling the font size of the quote text style. */
|
|
428
|
+
public static let semanticTypographyFontSizeSubheadlineSubheadline1FontSize = 36 /** This token controls the subheadline1 font size parameter. 24 - 24 - 32 - 36 */
|
|
429
|
+
public static let semanticTypographyFontSizeTitleTitle1FontSize = 28 /** 22 - 22 - 22 - 28 -- html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) */
|
|
430
|
+
public static let semanticTypographyFontSizeTitleTitle2FontSize = 20 /** 16 - 16 - 18 - 20 - html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) */
|
|
431
|
+
public static let semanticTypographyFontWeightBodyBodyFontWeightBold = 700
|
|
432
|
+
public static let semanticTypographyFontWeightBodyBodyFontWeightBook = 400
|
|
433
|
+
public static let semanticTypographyFontWeightCalloutCalloutFontWeight = 800
|
|
434
|
+
public static let semanticTypographyFontWeightDisplayDisplayFontWeight = 800
|
|
435
|
+
public static let semanticTypographyFontWeightFootnoteFootnoteFontWeightBold = 700
|
|
436
|
+
public static let semanticTypographyFontWeightFootnoteFootnoteFontWeightBook = 400
|
|
437
|
+
public static let semanticTypographyFontWeightHeadlineHeadline1FontWeight = 700
|
|
438
|
+
public static let semanticTypographyFontWeightHeadlineHeadline1FontWeightSt = 700 /** This variable is a string type variable for controlling not only headline font weight but also the italic style for Sport Bild headlines. */
|
|
439
|
+
public static let semanticTypographyFontWeightHeadlineHeadline2FontWeight = 700
|
|
440
|
+
public static let semanticTypographyFontWeightHeadlineHeadline3FontWeight = 700
|
|
441
|
+
public static let semanticTypographyFontWeightHeadlineHeadline4FontWeight = 600
|
|
442
|
+
public static let semanticTypographyFontWeightKickerKickerFontWeight = 700
|
|
443
|
+
public static let semanticTypographyFontWeightKickerKickerFontWeightSt = 700
|
|
444
|
+
public static let semanticTypographyFontWeightLabelLabelFontWeightBold = 700
|
|
445
|
+
public static let semanticTypographyFontWeightLabelLabelFontWeightBook = 400
|
|
446
|
+
public static let semanticTypographyFontWeightQuoteQuoteFontWeight = 800
|
|
447
|
+
public static let semanticTypographyFontWeightSubheadlineSubheadlineFontWeight = 700
|
|
448
|
+
public static let semanticTypographyFontWeightTitleTitleFontWeight = 800
|
|
449
|
+
public static let semanticTypographyLetterSpacingDisplayDisplay1LetterSpacing = -2 /** -0.5 | -0.5 | -1 | -2 | This variable is used for the letter spacing parameter of the display1 text style. On smaller devices the value is smaller than on larger devices. On desktop devices the letter spacing is further reduced for making the text style more compact. */
|
|
450
|
+
public static let semanticTypographyLetterSpacingDisplayDisplay2LetterSpacing = -1 /** -0.5 | -0.5 | -1 | -1 | This variable is used for the letter spacing parameter of the display2 text style. On smaller devices the value is smaller than on larger devices. */
|
|
451
|
+
public static let semanticTypographyLetterSpacingDisplayDisplay3LetterSpacing = -1 /** -0.5 | -0.5 | -1 | -1 | This variable is used for the letter spacing parameter of the display3 text style. On smaller devices the value is smaller than on larger devices. */
|
|
452
|
+
public static let semanticTypographyLetterSpacingLetterSpacingNegativeLg = -3 /** -2 | -2 | -2 | -3 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
453
|
+
public static let semanticTypographyLetterSpacingLetterSpacingNegativeMd = -1 /** -1 | -1 | -1 | -1 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
454
|
+
public static let semanticTypographyLetterSpacingLetterSpacingNegativeSm = -0.25 /** -0.5 | -0.5 | -0.25 | -0.25 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
455
|
+
public static let semanticTypographyLetterSpacingLetterSpacingNegativeXs = -0.25 /** -0.25 | -0.25 | -0.25 | -0.25 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. This letter spacing was only found in large titles on iOS mobile app large title component. */
|
|
456
|
+
public static let semanticTypographyLetterSpacingLetterSpacingNone = 0 /** 0 | 0 | 0 | 0 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
457
|
+
public static let semanticTypographyLetterSpacingLetterSpacingPositiveLg = 3 /** 2 | 2 | 2 | 3 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
458
|
+
public static let semanticTypographyLetterSpacingLetterSpacingPositiveMd = 1 /** 1 | 1 | 1 | 1 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
459
|
+
public static let semanticTypographyLetterSpacingLetterSpacingPositiveSm = 0.5 /** 0.5 | 0.5 | 0.5 | 0.5 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
460
|
+
public static let semanticTypographyLetterSpacingLetterSpacingPositiveXs = 0.25 /** 0.25 | 0.25 | 0.25 | 0.25 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
|
|
461
|
+
public static let semanticTypographyLineHeightBodyBodyLineHeight = 32 /** Figma's font line height currently does not allow for multipliers as is used on current website css var(--body-line-height) */
|
|
462
|
+
public static let semanticTypographyLineHeightCalloutCalloutLineHeight = 22
|
|
463
|
+
public static let semanticTypographyLineHeightDisplayDisplay1LineHeight = 120
|
|
464
|
+
public static let semanticTypographyLineHeightDisplayDisplay2LineHeight = 64
|
|
465
|
+
public static let semanticTypographyLineHeightDisplayDisplay3LineHeight = 40
|
|
466
|
+
public static let semanticTypographyLineHeightFootnoteFootnote1LineHeight = 23
|
|
467
|
+
public static let semanticTypographyLineHeightFootnoteFootnote2LineHeight = 21
|
|
468
|
+
public static let semanticTypographyLineHeightHeadlineHeadline1LineHeight = 100
|
|
469
|
+
public static let semanticTypographyLineHeightHeadlineHeadline2LineHeight = 64
|
|
470
|
+
public static let semanticTypographyLineHeightHeadlineHeadline3LineHeight = 40
|
|
471
|
+
public static let semanticTypographyLineHeightHeadlineHeadline4LineHeight = 30
|
|
472
|
+
public static let semanticTypographyLineHeightKickerKicker1LineHeight = 30
|
|
473
|
+
public static let semanticTypographyLineHeightKickerKicker2LineHeight = 24
|
|
474
|
+
public static let semanticTypographyLineHeightKickerKicker3LineHeight = 20
|
|
475
|
+
public static let semanticTypographyLineHeightKickerKicker4LineHeight = 16
|
|
476
|
+
public static let semanticTypographyLineHeightLabelLabel1LineHeight = 17 /** This variable is used in the label1 text style's line height parameter. It references branding variables for brand specific line heights. */
|
|
477
|
+
public static let semanticTypographyLineHeightLabelLabel1ResponsiveLineHeight = 17
|
|
478
|
+
public static let semanticTypographyLineHeightLabelLabel2LineHeight = 16
|
|
479
|
+
public static let semanticTypographyLineHeightLabelLabel3LineHeight = 14.4
|
|
480
|
+
public static let semanticTypographyLineHeightLabelLabel4LineHeight = 10
|
|
481
|
+
public static let semanticTypographyLineHeightQuoteQuoteLineHeight = 22 /** This variable is used in the quote text style line height parameter. */
|
|
482
|
+
public static let semanticTypographyLineHeightSubheadlineSubheadline1LineHeight = 36
|
|
483
|
+
public static let semanticTypographyLineHeightTitleTitle1LineHeight = 28
|
|
484
|
+
public static let semanticTypographyLineHeightTitleTitle2LineHeight = 22 /** html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) */
|
|
485
|
+
public static let semanticVisibilityBooleanHideOnDesktop = false /** Use for hiding elements on desktop viewport sizes only */
|
|
486
|
+
public static let semanticVisibilityBooleanHideOnMobile = true /** Use for hiding elements on mobile viewport sizes */
|
|
487
|
+
public static let semanticVisibilityBooleanVisilbleAbove600px = true /** Use for showing elements on viewport sizes above 600 px */
|
|
488
|
+
public static let semanticVisibilityBooleanVisilbleBelow600px = false /** Use for showing elements on viewport sizes below 600 px */
|
|
489
|
+
public static let semanticVisibilityBooleanVisilbleDesktopOnly = true /** Use for showing elements on desktop viewport sizes only */
|
|
490
|
+
public static let semanticVisibilityBooleanVisilbleMobileOnly = false /** Use for showing elements on mobile viewport sizes only */
|
|
491
|
+
public static let semanticVisibilityBooleanVisilbleTabletOnly = false /** Use for showing elements on tablet viewport sizes only */
|
|
492
|
+
public static let semanticVisibilityVariantSwitchBpSpecificApp = regular
|
|
493
|
+
public static let semanticVisibilityVariantSwitchBpSpecificWeb = lg
|
|
494
|
+
public static let semanticVisibilityVariantSwitchChangeOnLg = lg
|
|
495
|
+
public static let semanticVisibilityVariantSwitchChangeOnMd = md/lg /** This variable is used for controlling size changes across device sizes on some components such as the vertical newsticker cards and the search results cards. Both have cards that change layouts at different breakpoints. */
|
|
496
|
+
}
|