@ndla/ui 55.0.15-alpha.0 → 55.0.17-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. package/dist/panda.buildinfo.json +125 -29
  2. package/dist/styles.css +453 -103
  3. package/es/Article/Article.js +101 -162
  4. package/es/Article/ArticleByline.js +89 -56
  5. package/es/Article/ArticleFootNotes.js +35 -23
  6. package/es/Article/ArticleParagraph.js +2 -2
  7. package/es/Article/index.js +3 -5
  8. package/es/AudioPlayer/AudioPlayer.js +20 -20
  9. package/es/AudioPlayer/Controls.js +45 -45
  10. package/es/AudioPlayer/SpeechControl.js +8 -8
  11. package/es/BlogPost/BlogPost.js +6 -6
  12. package/es/Breadcrumb/Breadcrumb.js +19 -29
  13. package/es/Breadcrumb/BreadcrumbItem.js +20 -49
  14. package/es/Breadcrumb/HomeBreadcrumb.js +36 -82
  15. package/es/CampaignBlock/CampaignBlock.js +12 -12
  16. package/es/CodeBlock/CodeBlock.js +2 -2
  17. package/es/Concept/Concept.js +11 -11
  18. package/es/ContactBlock/ContactBlock.js +170 -185
  19. package/es/ContactBlock/index.js +3 -3
  20. package/es/ContentLoader/index.js +12 -12
  21. package/es/ContentPlaceholder/ContentPlaceholder.js +3 -3
  22. package/es/ContentTypeBadge/ContentTypeBadge.js +81 -80
  23. package/es/ContentTypeBadge/ContentTypeBadgeNew.js +3 -2
  24. package/es/ContentTypeHero/ContentTypeHero.js +50 -0
  25. package/es/{Logo → ContentTypeHero}/index.js +2 -3
  26. package/es/CopyParagraphButton/CopyParagraphButton.js +13 -12
  27. package/es/Embed/AudioEmbed.js +7 -7
  28. package/es/Embed/BrightcoveEmbed.js +8 -8
  29. package/es/Embed/CodeEmbed.js +6 -6
  30. package/es/Embed/ConceptEmbed.js +13 -13
  31. package/es/Embed/ConceptListEmbed.js +9 -9
  32. package/es/Embed/ContentLinkEmbed.js +6 -6
  33. package/es/Embed/CopyrightEmbed.js +3 -3
  34. package/es/Embed/EmbedErrorPlaceholder.js +5 -5
  35. package/es/Embed/ExternalEmbed.js +5 -5
  36. package/es/Embed/FootnoteEmbed.js +5 -5
  37. package/es/Embed/GlossEmbed.js +11 -11
  38. package/es/Embed/H5pEmbed.js +5 -5
  39. package/es/Embed/IframeEmbed.js +6 -6
  40. package/es/Embed/ImageEmbed.js +10 -10
  41. package/es/Embed/InlineTriggerButton.js +2 -2
  42. package/es/Embed/RelatedContentEmbed.js +5 -5
  43. package/es/Embed/UnknownEmbed.js +3 -3
  44. package/es/Embed/UuDisclaimerEmbed.js +6 -6
  45. package/es/ErrorMessage/ErrorMessage.js +14 -14
  46. package/es/ErrorMessage/ErrorResourceAccessDenied.js +6 -6
  47. package/es/FactBox/FactBox.js +5 -5
  48. package/es/FileList/File.js +3 -3
  49. package/es/FileList/FileList.js +6 -6
  50. package/es/FileList/Format.js +6 -6
  51. package/es/FileList/PdfFile.js +5 -5
  52. package/es/FrontpageArticle/FrontpageArticle.js +7 -8
  53. package/es/Gloss/Gloss.js +23 -23
  54. package/es/Gloss/GlossExample.js +9 -9
  55. package/es/Grid/Grid.js +4 -4
  56. package/es/KeyFigure/KeyFigure.js +5 -5
  57. package/es/Layout/LayoutItem.js +25 -37
  58. package/es/Layout/OneColumn.js +33 -31
  59. package/es/Layout/PageContainer.js +21 -30
  60. package/es/LicenseByline/EmbedByline.js +21 -21
  61. package/es/LicenseByline/LicenseLink.js +3 -3
  62. package/es/LinkBlock/LinkBlock.js +8 -8
  63. package/es/LinkBlock/LinkBlockSection.js +4 -4
  64. package/es/Messages/MessageBox.js +11 -11
  65. package/es/Messages/index.js +1 -2
  66. package/es/ProgrammeCard/ProgrammeCard.js +5 -5
  67. package/es/RelatedArticleList/RelatedArticleList.js +15 -15
  68. package/es/ResourceBox/ResourceBox.js +9 -9
  69. package/es/SnackBar/DefaultSnackbar.js +5 -5
  70. package/es/SnackBar/SnackbarProvider.js +7 -7
  71. package/es/TagSelector/TagSelector.js +17 -17
  72. package/es/TreeStructure/AddFolderButton.js +4 -4
  73. package/es/TreeStructure/ComboboxButton.js +7 -7
  74. package/es/TreeStructure/FolderItem.js +13 -13
  75. package/es/TreeStructure/FolderItems.js +6 -6
  76. package/es/TreeStructure/TreeStructure.js +9 -9
  77. package/es/ZendeskButton/ZendeskButton.js +2 -2
  78. package/es/i18n/index.js +1 -1
  79. package/es/index.js +5 -12
  80. package/es/locale/messages-en.js +1 -1
  81. package/es/locale/messages-nb.js +1 -1
  82. package/es/locale/messages-nn.js +1 -1
  83. package/es/locale/messages-se.js +1 -1
  84. package/es/locale/messages-sma.js +1 -1
  85. package/es/model/ContentType.js +3 -1
  86. package/es/styles.css +453 -103
  87. package/lib/Article/Article.d.ts +9 -30
  88. package/lib/Article/Article.js +104 -164
  89. package/lib/Article/ArticleByline.d.ts +1 -3
  90. package/lib/Article/ArticleByline.js +89 -56
  91. package/lib/Article/ArticleFootNotes.js +35 -24
  92. package/lib/Article/ArticleParagraph.js +2 -2
  93. package/lib/Article/index.d.ts +2 -5
  94. package/lib/Article/index.js +18 -24
  95. package/lib/AudioPlayer/AudioPlayer.js +20 -20
  96. package/lib/AudioPlayer/Controls.js +45 -45
  97. package/lib/AudioPlayer/SpeechControl.js +8 -8
  98. package/lib/BlogPost/BlogPost.js +6 -6
  99. package/lib/Breadcrumb/Breadcrumb.js +21 -29
  100. package/lib/Breadcrumb/BreadcrumbItem.js +22 -50
  101. package/lib/Breadcrumb/HomeBreadcrumb.d.ts +1 -2
  102. package/lib/Breadcrumb/HomeBreadcrumb.js +38 -82
  103. package/lib/CampaignBlock/CampaignBlock.js +12 -12
  104. package/lib/CodeBlock/CodeBlock.js +2 -2
  105. package/lib/Concept/Concept.js +11 -11
  106. package/lib/ContactBlock/ContactBlock.d.ts +6 -7
  107. package/lib/ContactBlock/ContactBlock.js +173 -184
  108. package/lib/ContactBlock/index.d.ts +3 -3
  109. package/lib/ContactBlock/index.js +13 -11
  110. package/lib/ContentLoader/index.js +12 -12
  111. package/lib/ContentPlaceholder/ContentPlaceholder.js +3 -3
  112. package/lib/ContentTypeBadge/ContentTypeBadge.d.ts +11 -12
  113. package/lib/ContentTypeBadge/ContentTypeBadge.js +83 -80
  114. package/lib/ContentTypeBadge/ContentTypeBadgeNew.d.ts +1 -2
  115. package/lib/ContentTypeBadge/ContentTypeBadgeNew.js +3 -2
  116. package/lib/ContentTypeHero/ContentTypeHero.d.ts +15 -0
  117. package/lib/ContentTypeHero/ContentTypeHero.js +57 -0
  118. package/lib/ContentTypeHero/index.d.ts +9 -0
  119. package/lib/ContentTypeHero/index.js +12 -0
  120. package/lib/CopyParagraphButton/CopyParagraphButton.js +13 -12
  121. package/lib/Embed/AudioEmbed.js +7 -7
  122. package/lib/Embed/BrightcoveEmbed.js +8 -8
  123. package/lib/Embed/CodeEmbed.js +6 -6
  124. package/lib/Embed/ConceptEmbed.js +13 -13
  125. package/lib/Embed/ConceptListEmbed.js +9 -9
  126. package/lib/Embed/ContentLinkEmbed.js +6 -6
  127. package/lib/Embed/CopyrightEmbed.js +3 -3
  128. package/lib/Embed/EmbedErrorPlaceholder.js +5 -5
  129. package/lib/Embed/ExternalEmbed.js +5 -5
  130. package/lib/Embed/FootnoteEmbed.js +5 -5
  131. package/lib/Embed/GlossEmbed.js +11 -11
  132. package/lib/Embed/H5pEmbed.js +5 -5
  133. package/lib/Embed/IframeEmbed.js +6 -6
  134. package/lib/Embed/ImageEmbed.js +10 -10
  135. package/lib/Embed/InlineTriggerButton.js +2 -2
  136. package/lib/Embed/RelatedContentEmbed.js +5 -5
  137. package/lib/Embed/UnknownEmbed.js +3 -3
  138. package/lib/Embed/UuDisclaimerEmbed.js +6 -6
  139. package/lib/ErrorMessage/ErrorMessage.js +14 -14
  140. package/lib/ErrorMessage/ErrorResourceAccessDenied.js +6 -6
  141. package/lib/FactBox/FactBox.js +5 -5
  142. package/lib/FileList/File.js +3 -3
  143. package/lib/FileList/FileList.js +6 -6
  144. package/lib/FileList/Format.js +6 -6
  145. package/lib/FileList/PdfFile.js +5 -5
  146. package/lib/FrontpageArticle/FrontpageArticle.js +7 -8
  147. package/lib/Gloss/Gloss.js +23 -23
  148. package/lib/Gloss/GlossExample.js +9 -9
  149. package/lib/Grid/Grid.js +4 -4
  150. package/lib/KeyFigure/KeyFigure.js +5 -5
  151. package/lib/Layout/LayoutItem.d.ts +3 -7
  152. package/lib/Layout/LayoutItem.js +27 -38
  153. package/lib/Layout/OneColumn.d.ts +3 -6
  154. package/lib/Layout/OneColumn.js +36 -33
  155. package/lib/Layout/PageContainer.d.ts +3 -6
  156. package/lib/Layout/PageContainer.js +24 -32
  157. package/lib/LicenseByline/EmbedByline.js +21 -21
  158. package/lib/LicenseByline/LicenseLink.js +3 -3
  159. package/lib/LinkBlock/LinkBlock.js +8 -8
  160. package/lib/LinkBlock/LinkBlockSection.js +4 -4
  161. package/lib/Messages/MessageBox.js +11 -11
  162. package/lib/Messages/index.d.ts +1 -2
  163. package/lib/Messages/index.js +0 -7
  164. package/lib/ProgrammeCard/ProgrammeCard.js +5 -5
  165. package/lib/RelatedArticleList/RelatedArticleList.js +15 -15
  166. package/lib/ResourceBox/ResourceBox.js +9 -9
  167. package/lib/SnackBar/DefaultSnackbar.js +5 -5
  168. package/lib/SnackBar/SnackbarProvider.js +7 -7
  169. package/lib/TagSelector/TagSelector.js +17 -17
  170. package/lib/TreeStructure/AddFolderButton.js +4 -4
  171. package/lib/TreeStructure/ComboboxButton.js +7 -7
  172. package/lib/TreeStructure/FolderItem.js +13 -13
  173. package/lib/TreeStructure/FolderItems.js +6 -6
  174. package/lib/TreeStructure/TreeStructure.js +9 -9
  175. package/lib/ZendeskButton/ZendeskButton.js +2 -2
  176. package/lib/i18n/index.d.ts +1 -1
  177. package/lib/i18n/index.js +6 -0
  178. package/lib/index.d.ts +8 -15
  179. package/lib/index.js +30 -139
  180. package/lib/locale/messages-en.js +1 -1
  181. package/lib/locale/messages-nb.js +1 -1
  182. package/lib/locale/messages-nn.js +1 -1
  183. package/lib/locale/messages-se.js +1 -1
  184. package/lib/locale/messages-sma.js +1 -1
  185. package/lib/model/ContentType.d.ts +1 -0
  186. package/lib/model/ContentType.js +4 -2
  187. package/lib/styles.css +453 -103
  188. package/package.json +10 -11
  189. package/src/Article/Article.tsx +101 -229
  190. package/src/Article/ArticleByline.tsx +82 -69
  191. package/src/Article/ArticleFootNotes.tsx +32 -36
  192. package/src/Article/index.ts +3 -7
  193. package/src/Breadcrumb/Breadcrumb.tsx +20 -18
  194. package/src/Breadcrumb/BreadcrumbItem.tsx +36 -59
  195. package/src/Breadcrumb/HomeBreadcrumb.stories.tsx +0 -12
  196. package/src/Breadcrumb/HomeBreadcrumb.tsx +33 -46
  197. package/src/ContactBlock/{Contactblock.stories.tsx → ContactBlock.stories.tsx} +3 -4
  198. package/src/ContactBlock/ContactBlock.tsx +165 -199
  199. package/src/ContactBlock/index.ts +3 -3
  200. package/src/ContentTypeBadge/ContentTypeBadge.tsx +77 -77
  201. package/src/ContentTypeBadge/ContentTypeBadgeNew.tsx +3 -1
  202. package/src/ContentTypeHero/ContentTypeHero.stories.tsx +76 -0
  203. package/src/ContentTypeHero/ContentTypeHero.tsx +55 -0
  204. package/src/ContentTypeHero/index.ts +10 -0
  205. package/src/CopyParagraphButton/CopyParagraphButton.tsx +10 -3
  206. package/src/Embed/AudioEmbed.stories.tsx +6 -8
  207. package/src/Embed/BrightcoveEmbed.stories.tsx +6 -8
  208. package/src/Embed/ConceptEmbed.stories.tsx +6 -8
  209. package/src/Embed/ExternalEmbed.stories.tsx +5 -5
  210. package/src/Embed/H5pEmbed.stories.tsx +6 -8
  211. package/src/Embed/IframeEmbed.stories.tsx +6 -8
  212. package/src/Embed/ImageEmbed.stories.tsx +6 -8
  213. package/src/Embed/RelatedContentEmbed.stories.tsx +6 -8
  214. package/src/Embed/UuDisclaimerEmbed.stories.tsx +6 -8
  215. package/src/FrontpageArticle/FrontpageArticle.tsx +1 -1
  216. package/src/Layout/LayoutItem.tsx +25 -41
  217. package/src/Layout/OneColumn.tsx +33 -33
  218. package/src/Layout/PageContainer.tsx +22 -24
  219. package/src/Messages/index.ts +1 -2
  220. package/src/i18n/index.ts +1 -0
  221. package/src/index.ts +11 -35
  222. package/src/locale/messages-en.ts +1 -1
  223. package/src/locale/messages-nb.ts +1 -1
  224. package/src/locale/messages-nn.ts +1 -1
  225. package/src/locale/messages-se.ts +1 -1
  226. package/src/locale/messages-sma.ts +1 -1
  227. package/src/model/ContentType.ts +2 -0
  228. package/es/Article/ArticleHeaderWrapper.js +0 -33
  229. package/es/CreatedBy/CreatedBy.js +0 -73
  230. package/es/CreatedBy/index.js +0 -10
  231. package/es/Hero/Hero.js +0 -68
  232. package/es/Hero/HeroContent.js +0 -16
  233. package/es/Hero/index.js +0 -10
  234. package/es/LanguageSelector/LanguageSelector.js +0 -87
  235. package/es/LanguageSelector/index.js +0 -10
  236. package/es/Logo/Logo.js +0 -52
  237. package/es/Logo/SvgLogo.js +0 -54
  238. package/es/Messages/MessageBanner.js +0 -72
  239. package/es/Search/ActiveFilterContent.js +0 -40
  240. package/es/Search/ActiveFilters.js +0 -112
  241. package/es/Search/ContentTypeResult.js +0 -151
  242. package/es/Search/ContentTypeResultStyles.js +0 -51
  243. package/es/Search/IsPathToHighlight.js +0 -12
  244. package/es/Search/LoadingWrapper.js +0 -31
  245. package/es/Search/SearchField.js +0 -110
  246. package/es/Search/SearchFieldForm.js +0 -33
  247. package/es/Search/SearchResult.js +0 -185
  248. package/es/Search/SearchResultSleeve.js +0 -229
  249. package/es/Search/index.js +0 -12
  250. package/lib/Article/ArticleHeaderWrapper.d.ts +0 -14
  251. package/lib/Article/ArticleHeaderWrapper.js +0 -40
  252. package/lib/CreatedBy/CreatedBy.d.ts +0 -15
  253. package/lib/CreatedBy/CreatedBy.js +0 -78
  254. package/lib/CreatedBy/index.d.ts +0 -9
  255. package/lib/CreatedBy/index.js +0 -16
  256. package/lib/Hero/Hero.d.ts +0 -25
  257. package/lib/Hero/Hero.js +0 -83
  258. package/lib/Hero/HeroContent.d.ts +0 -12
  259. package/lib/Hero/HeroContent.js +0 -23
  260. package/lib/Hero/index.d.ts +0 -10
  261. package/lib/Hero/index.js +0 -61
  262. package/lib/LanguageSelector/LanguageSelector.d.ts +0 -15
  263. package/lib/LanguageSelector/LanguageSelector.js +0 -92
  264. package/lib/LanguageSelector/index.d.ts +0 -9
  265. package/lib/LanguageSelector/index.js +0 -13
  266. package/lib/Logo/Logo.d.ts +0 -20
  267. package/lib/Logo/Logo.js +0 -58
  268. package/lib/Logo/SvgLogo.d.ts +0 -14
  269. package/lib/Logo/SvgLogo.js +0 -62
  270. package/lib/Logo/index.d.ts +0 -9
  271. package/lib/Logo/index.js +0 -16
  272. package/lib/Messages/MessageBanner.d.ts +0 -16
  273. package/lib/Messages/MessageBanner.js +0 -77
  274. package/lib/Search/ActiveFilterContent.d.ts +0 -23
  275. package/lib/Search/ActiveFilterContent.js +0 -47
  276. package/lib/Search/ActiveFilters.d.ts +0 -19
  277. package/lib/Search/ActiveFilters.js +0 -119
  278. package/lib/Search/ContentTypeResult.d.ts +0 -29
  279. package/lib/Search/ContentTypeResult.js +0 -159
  280. package/lib/Search/ContentTypeResultStyles.d.ts +0 -45
  281. package/lib/Search/ContentTypeResultStyles.js +0 -58
  282. package/lib/Search/IsPathToHighlight.d.ts +0 -8
  283. package/lib/Search/IsPathToHighlight.js +0 -19
  284. package/lib/Search/LoadingWrapper.d.ts +0 -12
  285. package/lib/Search/LoadingWrapper.js +0 -38
  286. package/lib/Search/SearchField.d.ts +0 -25
  287. package/lib/Search/SearchField.js +0 -117
  288. package/lib/Search/SearchFieldForm.d.ts +0 -15
  289. package/lib/Search/SearchFieldForm.js +0 -41
  290. package/lib/Search/SearchResult.d.ts +0 -43
  291. package/lib/Search/SearchResult.js +0 -194
  292. package/lib/Search/SearchResultSleeve.d.ts +0 -25
  293. package/lib/Search/SearchResultSleeve.js +0 -237
  294. package/lib/Search/index.d.ts +0 -11
  295. package/lib/Search/index.js +0 -33
  296. package/src/Article/ArticleHeaderWrapper.tsx +0 -38
  297. package/src/CreatedBy/CreatedBy.stories.tsx +0 -36
  298. package/src/CreatedBy/CreatedBy.tsx +0 -63
  299. package/src/CreatedBy/index.ts +0 -11
  300. package/src/Hero/Hero.stories.tsx +0 -35
  301. package/src/Hero/Hero.tsx +0 -129
  302. package/src/Hero/HeroContent.tsx +0 -43
  303. package/src/Hero/index.ts +0 -21
  304. package/src/LanguageSelector/LanguageSelector.stories.tsx +0 -44
  305. package/src/LanguageSelector/LanguageSelector.tsx +0 -101
  306. package/src/LanguageSelector/index.ts +0 -11
  307. package/src/Logo/Logo.stories.tsx +0 -47
  308. package/src/Logo/Logo.tsx +0 -47
  309. package/src/Logo/SvgLogo.tsx +0 -48
  310. package/src/Logo/index.ts +0 -11
  311. package/src/Messages/MessageBanner.stories.tsx +0 -31
  312. package/src/Messages/MessageBanner.tsx +0 -67
  313. package/src/Search/ActiveFilterContent.tsx +0 -64
  314. package/src/Search/ActiveFilters.tsx +0 -145
  315. package/src/Search/ContentTypeResult.tsx +0 -190
  316. package/src/Search/ContentTypeResultStyles.tsx +0 -172
  317. package/src/Search/IsPathToHighlight.ts +0 -12
  318. package/src/Search/LoadingWrapper.tsx +0 -44
  319. package/src/Search/SearchField.tsx +0 -175
  320. package/src/Search/SearchFieldForm.tsx +0 -64
  321. package/src/Search/SearchResult.tsx +0 -368
  322. package/src/Search/SearchResultSleeve.tsx +0 -367
  323. package/src/Search/__tests__/Highlight-test.ts +0 -66
  324. package/src/Search/index.ts +0 -14
package/dist/styles.css CHANGED
@@ -1,5 +1,17 @@
1
1
  @layer utilities {
2
2
  @layer compositions {
3
+ .textStyle_body\.medium {
4
+ font-family: var(--fonts-sans);
5
+ font-weight: var(--font-weights-normal);
6
+ font-size: var(--font-sizes-small);
7
+ line-height: var(--line-heights-small);
8
+ }
9
+
10
+ .textStyle_body\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
11
+ font-size: calc(var(--font-sizes-small) * 1.11);
12
+ line-height: calc(var(--line-heights-small) * 1.11);
13
+ }
14
+
3
15
  .textStyle_body\.large {
4
16
  font-family: var(--fonts-sans);
5
17
  font-weight: var(--font-weights-normal);
@@ -36,18 +48,6 @@
36
48
  line-height: calc(var(--line-heights-medium) * 1.11);
37
49
  }
38
50
 
39
- .textStyle_body\.medium {
40
- font-family: var(--fonts-sans);
41
- font-weight: var(--font-weights-normal);
42
- font-size: var(--font-sizes-small);
43
- line-height: var(--line-heights-small);
44
- }
45
-
46
- .textStyle_body\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
47
- font-size: calc(var(--font-sizes-small) * 1.11);
48
- line-height: calc(var(--line-heights-small) * 1.11);
49
- }
50
-
51
51
  .\[\&_a\]\:textStyle_label\.xsmall a {
52
52
  font-family: var(--fonts-sans);
53
53
  font-weight: var(--font-weights-normal);
@@ -61,6 +61,78 @@
61
61
  }
62
62
  }
63
63
 
64
+ .w_100\% {
65
+ width: 100%;
66
+ }
67
+
68
+ .d_flex {
69
+ display: flex;
70
+ }
71
+
72
+ .c_text\.default {
73
+ color: var(--colors-text-default);
74
+ }
75
+
76
+ .gap_xxlarge {
77
+ gap: var(--spacing-xxlarge);
78
+ }
79
+
80
+ .bg_surface\.default {
81
+ background: var(--colors-surface-default);
82
+ }
83
+
84
+ .py_xsmall {
85
+ padding-block: var(--spacing-xsmall);
86
+ }
87
+
88
+ .px_8\% {
89
+ padding-inline: 8%;
90
+ }
91
+
92
+ .ov-wrap_break-word {
93
+ overflow-wrap: break-word;
94
+ }
95
+
96
+ .pos_relative {
97
+ position: relative;
98
+ }
99
+
100
+ .gap_xsmall {
101
+ gap: var(--spacing-xsmall);
102
+ }
103
+
104
+ .pos_absolute {
105
+ position: absolute;
106
+ }
107
+
108
+ .gap_medium {
109
+ gap: var(--spacing-medium);
110
+ }
111
+
112
+ .mbs_medium {
113
+ margin-block-start: var(--spacing-medium);
114
+ }
115
+
116
+ .pbs_xsmall {
117
+ padding-block-start: var(--spacing-xsmall);
118
+ }
119
+
120
+ .bd-t_1px_solid {
121
+ border-top: 1px solid;
122
+ }
123
+
124
+ .gap_3xsmall {
125
+ gap: var(--spacing-3xsmall);
126
+ }
127
+
128
+ .pbs_xxlarge {
129
+ padding-block-start: var(--spacing-xxlarge);
130
+ }
131
+
132
+ .li-s_none {
133
+ list-style: none;
134
+ }
135
+
64
136
  .bd_1px_solid {
65
137
  border: 1px solid;
66
138
  }
@@ -81,10 +153,6 @@
81
153
  overflow: hidden;
82
154
  }
83
155
 
84
- .d_flex {
85
- display: flex;
86
- }
87
-
88
156
  .flex_1_0_auto {
89
157
  flex: 1 0 auto;
90
158
  }
@@ -97,18 +165,10 @@
97
165
  height: var(--sizes-surface-4xsmall);
98
166
  }
99
167
 
100
- .gap_xsmall {
101
- gap: var(--spacing-xsmall);
102
- }
103
-
104
168
  .p_xsmall {
105
169
  padding: var(--spacing-xsmall);
106
170
  }
107
171
 
108
- .w_100\% {
109
- width: 100%;
110
- }
111
-
112
172
  .bd-bs_1px_solid {
113
173
  border-block-start: 1px solid;
114
174
  }
@@ -134,10 +194,6 @@
134
194
  background: var(--colors-background-default);
135
195
  }
136
196
 
137
- .py_xsmall {
138
- padding-block: var(--spacing-xsmall);
139
- }
140
-
141
197
  .px_medium {
142
198
  padding-inline: var(--spacing-medium);
143
199
  }
@@ -210,14 +266,6 @@
210
266
  border-width: 0;
211
267
  }
212
268
 
213
- .c_text\.default {
214
- color: var(--colors-text-default);
215
- }
216
-
217
- .gap_medium {
218
- gap: var(--spacing-medium);
219
- }
220
-
221
269
  .h_100\% {
222
270
  height: 100%;
223
271
  }
@@ -250,32 +298,32 @@
250
298
  width: fit-content;
251
299
  }
252
300
 
253
- .pos_relative {
254
- position: relative;
255
- }
256
-
257
301
  .max-w_8xl {
258
302
  max-width: 8xl;
259
303
  }
260
304
 
261
- .max-w_surface\.xsmall {
262
- max-width: var(--sizes-surface-xsmall);
305
+ .c_inherit {
306
+ color: inherit;
263
307
  }
264
308
 
265
- .gap_xxsmall {
266
- gap: var(--spacing-xxsmall);
309
+ .gap_4xsmall {
310
+ gap: var(--spacing-4xsmall);
267
311
  }
268
312
 
269
313
  .td_underline {
270
314
  text-decoration: underline;
271
315
  }
272
316
 
273
- .h_215px {
274
- height: 215px;
317
+ .max-w_surface\.xsmall {
318
+ max-width: var(--sizes-surface-xsmall);
275
319
  }
276
320
 
277
- .c_inherit {
278
- color: inherit;
321
+ .gap_xxsmall {
322
+ gap: var(--spacing-xxsmall);
323
+ }
324
+
325
+ .h_215px {
326
+ height: 215px;
279
327
  }
280
328
 
281
329
  .bd-l_4px_solid {
@@ -298,6 +346,70 @@
298
346
  display: inline;
299
347
  }
300
348
 
349
+ .max-w_744px {
350
+ max-width: 744px;
351
+ }
352
+
353
+ .min-w_surface\.xxsmall {
354
+ min-width: var(--sizes-surface-xxsmall);
355
+ }
356
+
357
+ .p_medium {
358
+ padding: var(--spacing-medium);
359
+ }
360
+
361
+ .z_base {
362
+ z-index: var(--z-index-base);
363
+ }
364
+
365
+ .w_surface\.xsmall {
366
+ width: var(--sizes-surface-xsmall);
367
+ }
368
+
369
+ .h_surface\.xsmall {
370
+ height: var(--sizes-surface-xsmall);
371
+ }
372
+
373
+ .d_inline-flex {
374
+ display: inline-flex;
375
+ }
376
+
377
+ .bdr_100\% {
378
+ border-radius: 100%;
379
+ }
380
+
381
+ .c_var\(--icon-color\) {
382
+ color: var(--icon-color);
383
+ }
384
+
385
+ .w_20px {
386
+ width: 20px;
387
+ }
388
+
389
+ .h_20px {
390
+ height: 20px;
391
+ }
392
+
393
+ .w_34px {
394
+ width: 34px;
395
+ }
396
+
397
+ .h_34px {
398
+ height: 34px;
399
+ }
400
+
401
+ .w_50px {
402
+ width: 50px;
403
+ }
404
+
405
+ .h_50px {
406
+ height: 50px;
407
+ }
408
+
409
+ .bd_2px_solid {
410
+ border: 2px solid;
411
+ }
412
+
301
413
  .ms_xsmall {
302
414
  margin-inline-start: var(--spacing-xsmall);
303
415
  }
@@ -314,10 +426,6 @@
314
426
  color: var(--colors-text-error);
315
427
  }
316
428
 
317
- .h_surface\.xsmall {
318
- height: var(--sizes-surface-xsmall);
319
- }
320
-
321
429
  .bd-b_0 {
322
430
  border-bottom: 0;
323
431
  }
@@ -326,14 +434,6 @@
326
434
  cursor: pointer;
327
435
  }
328
436
 
329
- .pos_absolute {
330
- position: absolute;
331
- }
332
-
333
- .z_base {
334
- z-index: var(--z-index-base);
335
- }
336
-
337
437
  .bg_background\.default\/20 {
338
438
  --mix-background: color-mix(in srgb, var(--colors-background-default) 20%, transparent);
339
439
  background: var(--mix-background, var(--colors-background-default));
@@ -351,10 +451,6 @@
351
451
  height: var(--sizes-medium);
352
452
  }
353
453
 
354
- .bd_2px_solid {
355
- border: 2px solid;
356
- }
357
-
358
454
  .c_background\.default {
359
455
  color: var(--colors-background-default);
360
456
  }
@@ -387,10 +483,6 @@
387
483
  margin-block: var(--spacing-xxlarge);
388
484
  }
389
485
 
390
- .p_medium {
391
- padding: var(--spacing-medium);
392
- }
393
-
394
486
  .max-h_surface\.xxsmall {
395
487
  max-height: var(--sizes-surface-xxsmall);
396
488
  }
@@ -411,20 +503,28 @@
411
503
  padding-block: var(--spacing-small);
412
504
  }
413
505
 
414
- .bd-t_1px_solid {
415
- border-top: 1px solid;
506
+ .pos_relative\! {
507
+ position: relative !important;
416
508
  }
417
509
 
418
- .bg_surface\.default {
419
- background: var(--colors-surface-default);
510
+ .w_83\.333\% {
511
+ width: 83.333%;
420
512
  }
421
513
 
422
- .bg_surface\.dangerSubtle {
423
- background: var(--colors-surface-danger-subtle);
514
+ .max-w_1150px {
515
+ max-width: 1150px;
424
516
  }
425
517
 
426
- .d_inline-flex {
427
- display: inline-flex;
518
+ .max-w_1024px {
519
+ max-width: 1024px;
520
+ }
521
+
522
+ .min-h_100vh {
523
+ min-height: 100vh;
524
+ }
525
+
526
+ .bg_surface\.dangerSubtle {
527
+ background: var(--colors-surface-danger-subtle);
428
528
  }
429
529
 
430
530
  .white-space_pre-wrap {
@@ -443,10 +543,6 @@
443
543
  color: var(--colors-icon-strong);
444
544
  }
445
545
 
446
- .li-s_none {
447
- list-style: none;
448
- }
449
-
450
546
  .d_grid {
451
547
  display: grid;
452
548
  }
@@ -459,8 +555,8 @@
459
555
  aspect-ratio: 1/1;
460
556
  }
461
557
 
462
- .bd-c_stroke\.default {
463
- border-color: var(--colors-stroke-default);
558
+ .flex-d_column {
559
+ flex-direction: column;
464
560
  }
465
561
 
466
562
  .ai_center {
@@ -471,8 +567,28 @@
471
567
  align-items: flex-start;
472
568
  }
473
569
 
474
- .flex-d_column {
475
- flex-direction: column;
570
+ .right_8\% {
571
+ right: 8%;
572
+ }
573
+
574
+ .top_xsmall {
575
+ top: var(--spacing-xsmall);
576
+ }
577
+
578
+ .bd-c_stroke\.subtle {
579
+ border-color: var(--colors-stroke-subtle);
580
+ }
581
+
582
+ .flex-d_column-reverse {
583
+ flex-direction: column-reverse;
584
+ }
585
+
586
+ .jc_space-between {
587
+ justify-content: space-between;
588
+ }
589
+
590
+ .bd-c_stroke\.default {
591
+ border-color: var(--colors-stroke-default);
476
592
  }
477
593
 
478
594
  .as_flex-start {
@@ -487,10 +603,6 @@
487
603
  background-color: var(--colors-background-default);
488
604
  }
489
605
 
490
- .bd-c_stroke\.subtle {
491
- border-color: var(--colors-stroke-subtle);
492
- }
493
-
494
606
  .trs-dur_fast {
495
607
  --transition-duration: var(--durations-fast);
496
608
  transition-duration: var(--durations-fast);
@@ -506,6 +618,14 @@
506
618
  transition-timing-function: var(--easings-default);
507
619
  }
508
620
 
621
+ .flex-wrap_wrap {
622
+ flex-wrap: wrap;
623
+ }
624
+
625
+ .ai_flex-end {
626
+ align-items: flex-end;
627
+ }
628
+
509
629
  .as_center {
510
630
  align-self: center;
511
631
  }
@@ -522,6 +642,22 @@
522
642
  font-family: var(--fonts-code);
523
643
  }
524
644
 
645
+ .jc_flex-start {
646
+ justify-content: flex-start;
647
+ }
648
+
649
+ .ff_serif {
650
+ font-family: var(--fonts-serif);
651
+ }
652
+
653
+ .bd-c_var\(--icon-color\) {
654
+ border-color: var(--icon-color);
655
+ }
656
+
657
+ .bg-c_var\(--background-color\) {
658
+ background-color: var(--background-color);
659
+ }
660
+
525
661
  .fw_bold {
526
662
  font-weight: var(--font-weights-bold);
527
663
  }
@@ -565,10 +701,6 @@
565
701
  transition-timing-function: ease-out;
566
702
  }
567
703
 
568
- .top_xsmall {
569
- top: var(--spacing-xsmall);
570
- }
571
-
572
704
  .right_xsmall {
573
705
  right: var(--spacing-xsmall);
574
706
  }
@@ -620,14 +752,34 @@
620
752
  bottom: calc(var(--spacing-medium) * -1);
621
753
  }
622
754
 
623
- .jc_space-between {
624
- justify-content: space-between;
625
- }
626
-
627
755
  .font-style_italic {
628
756
  font-style: italic;
629
757
  }
630
758
 
759
+ .right_auto\! {
760
+ right: auto !important;
761
+ }
762
+
763
+ .left_8\.333\% {
764
+ left: 8.333%;
765
+ }
766
+
767
+ .ml_auto {
768
+ margin-left: auto;
769
+ }
770
+
771
+ .mr_auto {
772
+ margin-right: auto;
773
+ }
774
+
775
+ .pl_18px {
776
+ padding-left: 18px;
777
+ }
778
+
779
+ .pr_18px {
780
+ padding-right: 18px;
781
+ }
782
+
631
783
  .bd-c_stroke\.error {
632
784
  border-color: var(--colors-stroke-error);
633
785
  }
@@ -636,6 +788,22 @@
636
788
  grid-template-columns: repeat(2, 1fr);
637
789
  }
638
790
 
791
+ .\[\&_mjx-stretchy-v_\>_mjx-ext_\>_mjx-c\]\:trf_scaleY\(100\)_translateY\(0\.075em\) mjx-stretchy-v > mjx-ext > mjx-c {
792
+ transform: scaleY(100) translateY(0.075em);
793
+ }
794
+
795
+ .after\:d_table::after {
796
+ display: table;
797
+ }
798
+
799
+ .after\:clear_both::after {
800
+ clear: both;
801
+ }
802
+
803
+ .\[\&_h1\]\:ov-wrap_anywhere h1 {
804
+ overflow-wrap: anywhere;
805
+ }
806
+
639
807
  .\[\&\[data-align\=\"center\"\]\]\:ta_center[data-align="center"] {
640
808
  text-align: center;
641
809
  }
@@ -752,6 +920,42 @@
752
920
  display: inline;
753
921
  }
754
922
 
923
+ .before\:pos_absolute::before {
924
+ position: absolute;
925
+ }
926
+
927
+ .before\:h_calc\(100\%_\+_50px\)::before {
928
+ height: calc(100% + 50px);
929
+ }
930
+
931
+ .before\:w_surface\.3xlarge::before {
932
+ width: var(--sizes-surface-3xlarge);
933
+ }
934
+
935
+ .before\:trf_rotate\(-4deg\)::before {
936
+ transform: rotate(-4deg);
937
+ }
938
+
939
+ .before\:z_hide::before {
940
+ z-index: var(--z-index-hide);
941
+ }
942
+
943
+ .\[\&_svg\]\:w_10px svg {
944
+ width: 10px;
945
+ }
946
+
947
+ .\[\&_svg\]\:h_10px svg {
948
+ height: 10px;
949
+ }
950
+
951
+ .\[\&_svg\]\:w_25px svg {
952
+ width: 25px;
953
+ }
954
+
955
+ .\[\&_svg\]\:h_25px svg {
956
+ height: 25px;
957
+ }
958
+
755
959
  .\[\&_\>_\*\:not\(\:where\(\:first-child\)\)\]\:mbs_xsmall > *:not(:where(:first-child)) {
756
960
  margin-block-start: var(--spacing-xsmall);
757
961
  }
@@ -851,12 +1055,16 @@
851
1055
  background: var(--colors-surface-brand-1-subtle);
852
1056
  }
853
1057
 
854
- .\[\&_h3\]\:td_underline h3 {
855
- text-decoration: underline;
1058
+ .after\:d_block\!::after {
1059
+ display: block !important;
856
1060
  }
857
1061
 
858
- .before\:pos_absolute::before {
859
- position: absolute;
1062
+ .after\:clear_both\!::after {
1063
+ clear: both !important;
1064
+ }
1065
+
1066
+ .\[\&_h3\]\:td_underline h3 {
1067
+ text-decoration: underline;
860
1068
  }
861
1069
 
862
1070
  .before\:inset_0::before {
@@ -867,6 +1075,10 @@
867
1075
  z-index: 0;
868
1076
  }
869
1077
 
1078
+ .after\:content_0::after {
1079
+ content: 0;
1080
+ }
1081
+
870
1082
  .\[\&_\.linenumber\]\:bd-c_stroke\.subtle .linenumber {
871
1083
  border-color: var(--colors-stroke-subtle);
872
1084
  }
@@ -883,6 +1095,38 @@
883
1095
  font-style: italic;
884
1096
  }
885
1097
 
1098
+ .before\:content_\"\"::before {
1099
+ content: "";
1100
+ }
1101
+
1102
+ .before\:top_-60px::before {
1103
+ top: -60px;
1104
+ }
1105
+
1106
+ .before\:left_-50px::before {
1107
+ left: -50px;
1108
+ }
1109
+
1110
+ .before\:right_0::before {
1111
+ right: 0;
1112
+ }
1113
+
1114
+ .before\:bottom_0::before {
1115
+ bottom: 0;
1116
+ }
1117
+
1118
+ .before\:bg-c_surface\.brand\.3::before {
1119
+ background-color: var(--colors-surface-brand-3);
1120
+ }
1121
+
1122
+ .before\:bg-c_surface\.brand\.3\.moderate::before {
1123
+ background-color: var(--colors-surface-brand-3-moderate);
1124
+ }
1125
+
1126
+ .before\:bg-c_surface\.brand\.3\.subtle::before {
1127
+ background-color: var(--colors-surface-brand-3-subtle);
1128
+ }
1129
+
886
1130
  .\[\&_svg\]\:trs-prop_transform svg {
887
1131
  --transition-prop: transform;
888
1132
  transition-property: transform;
@@ -935,6 +1179,10 @@
935
1179
  border-color: var(--colors-stroke-default);
936
1180
  }
937
1181
 
1182
+ .after\:content_\"\"\!::after {
1183
+ content: "" !important;
1184
+ }
1185
+
938
1186
  .\[\&_\[data-forward\]\]\:trs-prop_width\,_height [data-forward] {
939
1187
  --transition-prop: width, height;
940
1188
  transition-property: width, height;
@@ -950,11 +1198,11 @@
950
1198
  transition-duration: var(--durations-fast);
951
1199
  }
952
1200
 
953
- .before\:content_\"\"::before {
954
- content: "";
1201
+ .focusWithin\:td_none:focus-within {
1202
+ text-decoration: none;
955
1203
  }
956
1204
 
957
- .focusWithin\:td_none:focus-within {
1205
+ .focusVisible\:td_none:is(:focus-visible, [data-focus-visible]) {
958
1206
  text-decoration: none;
959
1207
  }
960
1208
 
@@ -1077,24 +1325,69 @@
1077
1325
  }
1078
1326
  .mobileWide\:d_none {
1079
1327
  display: none;
1328
+ }
1329
+ .mobileWide\:pl_medium {
1330
+ padding-left: var(--spacing-medium);
1331
+ }
1332
+ .mobileWide\:pr_medium {
1333
+ padding-right: var(--spacing-medium);
1080
1334
  }
1081
1335
  }
1082
1336
 
1083
1337
  @media screen and (min-width: 37.5625rem) {
1338
+ .tablet\:py_medium {
1339
+ padding-block: var(--spacing-medium);
1340
+ }
1084
1341
  .tablet\:px_medium {
1085
1342
  padding-inline: var(--spacing-medium);
1343
+ }
1344
+ .tablet\:h_26px {
1345
+ height: 26px;
1346
+ }
1347
+ .tablet\:w_26px {
1348
+ width: 26px;
1349
+ }
1350
+ .tablet\:pos_relative\! {
1351
+ position: relative !important;
1352
+ }
1353
+ .tablet\:w_83\.333\% {
1354
+ width: 83.333%;
1355
+ }
1356
+ .tablet\:top_medium {
1357
+ top: var(--spacing-medium);
1358
+ }
1359
+ .tablet\:ai_unset {
1360
+ align-items: unset;
1361
+ }
1362
+ .tablet\:flex-d_row {
1363
+ flex-direction: row;
1086
1364
  }
1087
1365
  .tablet\:mt_xxlarge {
1088
1366
  margin-top: var(--spacing-xxlarge);
1089
1367
  }
1090
1368
  .tablet\:mb_xxlarge {
1091
1369
  margin-bottom: var(--spacing-xxlarge);
1370
+ }
1371
+ .tablet\:right_auto\! {
1372
+ right: auto !important;
1373
+ }
1374
+ .tablet\:left_8\.333\% {
1375
+ left: 8.333%;
1376
+ }
1377
+ .tablet\:bg-c_\#f8f8f8 {
1378
+ background-color: #f8f8f8;
1092
1379
  }
1093
1380
  .\[\&\[data-has-image\=\'true\'\]\]\:tablet\:py_xsmall[data-has-image='true'] {
1094
1381
  padding-block: var(--spacing-xsmall);
1095
1382
  }
1096
1383
  .\[\&\[data-has-image\=\'true\'\]\]\:tablet\:px_medium[data-has-image='true'] {
1097
1384
  padding-inline: var(--spacing-medium);
1385
+ }
1386
+ .\[\&_svg\]\:tablet\:w_12px svg {
1387
+ width: 12px;
1388
+ }
1389
+ .\[\&_svg\]\:tablet\:h_12px svg {
1390
+ height: 12px;
1098
1391
  }
1099
1392
  }
1100
1393
 
@@ -1120,6 +1413,9 @@
1120
1413
  }
1121
1414
 
1122
1415
  @media screen and (min-width: 61.3125rem) {
1416
+ .desktop\:py_xxlarge {
1417
+ padding-block: var(--spacing-xxlarge);
1418
+ }
1123
1419
  .desktop\:w_260px {
1124
1420
  width: 260px;
1125
1421
  }
@@ -1128,6 +1424,9 @@
1128
1424
  }
1129
1425
  .desktop\:h_340px {
1130
1426
  height: 340px;
1427
+ }
1428
+ .desktop\:top_xxlarge {
1429
+ top: var(--spacing-xxlarge);
1131
1430
  }
1132
1431
  }
1133
1432
 
@@ -1168,6 +1467,12 @@
1168
1467
  }
1169
1468
 
1170
1469
  @media screen and (max-width: 37.56rem) {
1470
+ .tabletDown\:d_block {
1471
+ display: block;
1472
+ }
1473
+ .tabletDown\:d_none {
1474
+ display: none;
1475
+ }
1171
1476
  .tabletDown\:gap_0 {
1172
1477
  gap: 0;
1173
1478
  }
@@ -1188,6 +1493,39 @@
1188
1493
  }
1189
1494
  .tabletDown\:flex-d_column {
1190
1495
  flex-direction: column;
1496
+ }
1497
+ .tabletDown\:before\:d_none::before {
1498
+ display: none;
1499
+ }
1500
+ .tabletDown\:before\:pos_absolute::before {
1501
+ position: absolute;
1502
+ }
1503
+ .tabletDown\:before\:h_surface\.xxsmall::before {
1504
+ height: var(--sizes-surface-xxsmall);
1505
+ }
1506
+ .tabletDown\:before\:w_surface\.3xlarge::before {
1507
+ width: var(--sizes-surface-3xlarge);
1508
+ }
1509
+ .tabletDown\:before\:trf_rotate\(-4deg\)::before {
1510
+ transform: rotate(-4deg);
1511
+ }
1512
+ .tabletDown\:before\:z_hide::before {
1513
+ z-index: var(--z-index-hide);
1514
+ }
1515
+ .tabletDown\:before\:content_\"\"::before {
1516
+ content: "";
1517
+ }
1518
+ .tabletDown\:before\:top_-50px::before {
1519
+ top: -50px;
1520
+ }
1521
+ .tabletDown\:before\:left_-50px::before {
1522
+ left: -50px;
1523
+ }
1524
+ .tabletDown\:before\:right_0::before {
1525
+ right: 0;
1526
+ }
1527
+ .tabletDown\:before\:bottom_0::before {
1528
+ bottom: 0;
1191
1529
  }
1192
1530
  }
1193
1531
 
@@ -1251,6 +1589,18 @@
1251
1589
  @media screen and (max-width: 19.9975rem) {
1252
1590
  .mobileDown\:px_xsmall {
1253
1591
  padding-inline: var(--spacing-xsmall);
1592
+ }
1593
+ .mobileDown\:gap_xxsmall {
1594
+ gap: var(--spacing-xxsmall);
1595
+ }
1596
+ .mobileDown\:ai_flex-start {
1597
+ align-items: flex-start;
1598
+ }
1599
+ .mobileDown\:jc_center {
1600
+ justify-content: center;
1601
+ }
1602
+ .mobileDown\:flex-d_column {
1603
+ flex-direction: column;
1254
1604
  }
1255
1605
  }
1256
1606