@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.
- package/dist/panda.buildinfo.json +125 -29
- package/dist/styles.css +453 -103
- package/es/Article/Article.js +101 -162
- package/es/Article/ArticleByline.js +89 -56
- package/es/Article/ArticleFootNotes.js +35 -23
- package/es/Article/ArticleParagraph.js +2 -2
- package/es/Article/index.js +3 -5
- package/es/AudioPlayer/AudioPlayer.js +20 -20
- package/es/AudioPlayer/Controls.js +45 -45
- package/es/AudioPlayer/SpeechControl.js +8 -8
- package/es/BlogPost/BlogPost.js +6 -6
- package/es/Breadcrumb/Breadcrumb.js +19 -29
- package/es/Breadcrumb/BreadcrumbItem.js +20 -49
- package/es/Breadcrumb/HomeBreadcrumb.js +36 -82
- package/es/CampaignBlock/CampaignBlock.js +12 -12
- package/es/CodeBlock/CodeBlock.js +2 -2
- package/es/Concept/Concept.js +11 -11
- package/es/ContactBlock/ContactBlock.js +170 -185
- package/es/ContactBlock/index.js +3 -3
- package/es/ContentLoader/index.js +12 -12
- package/es/ContentPlaceholder/ContentPlaceholder.js +3 -3
- package/es/ContentTypeBadge/ContentTypeBadge.js +81 -80
- package/es/ContentTypeBadge/ContentTypeBadgeNew.js +3 -2
- package/es/ContentTypeHero/ContentTypeHero.js +50 -0
- package/es/{Logo → ContentTypeHero}/index.js +2 -3
- package/es/CopyParagraphButton/CopyParagraphButton.js +13 -12
- package/es/Embed/AudioEmbed.js +7 -7
- package/es/Embed/BrightcoveEmbed.js +8 -8
- package/es/Embed/CodeEmbed.js +6 -6
- package/es/Embed/ConceptEmbed.js +13 -13
- package/es/Embed/ConceptListEmbed.js +9 -9
- package/es/Embed/ContentLinkEmbed.js +6 -6
- package/es/Embed/CopyrightEmbed.js +3 -3
- package/es/Embed/EmbedErrorPlaceholder.js +5 -5
- package/es/Embed/ExternalEmbed.js +5 -5
- package/es/Embed/FootnoteEmbed.js +5 -5
- package/es/Embed/GlossEmbed.js +11 -11
- package/es/Embed/H5pEmbed.js +5 -5
- package/es/Embed/IframeEmbed.js +6 -6
- package/es/Embed/ImageEmbed.js +10 -10
- package/es/Embed/InlineTriggerButton.js +2 -2
- package/es/Embed/RelatedContentEmbed.js +5 -5
- package/es/Embed/UnknownEmbed.js +3 -3
- package/es/Embed/UuDisclaimerEmbed.js +6 -6
- package/es/ErrorMessage/ErrorMessage.js +14 -14
- package/es/ErrorMessage/ErrorResourceAccessDenied.js +6 -6
- package/es/FactBox/FactBox.js +5 -5
- package/es/FileList/File.js +3 -3
- package/es/FileList/FileList.js +6 -6
- package/es/FileList/Format.js +6 -6
- package/es/FileList/PdfFile.js +5 -5
- package/es/FrontpageArticle/FrontpageArticle.js +7 -8
- package/es/Gloss/Gloss.js +23 -23
- package/es/Gloss/GlossExample.js +9 -9
- package/es/Grid/Grid.js +4 -4
- package/es/KeyFigure/KeyFigure.js +5 -5
- package/es/Layout/LayoutItem.js +25 -37
- package/es/Layout/OneColumn.js +33 -31
- package/es/Layout/PageContainer.js +21 -30
- package/es/LicenseByline/EmbedByline.js +21 -21
- package/es/LicenseByline/LicenseLink.js +3 -3
- package/es/LinkBlock/LinkBlock.js +8 -8
- package/es/LinkBlock/LinkBlockSection.js +4 -4
- package/es/Messages/MessageBox.js +11 -11
- package/es/Messages/index.js +1 -2
- package/es/ProgrammeCard/ProgrammeCard.js +5 -5
- package/es/RelatedArticleList/RelatedArticleList.js +15 -15
- package/es/ResourceBox/ResourceBox.js +9 -9
- package/es/SnackBar/DefaultSnackbar.js +5 -5
- package/es/SnackBar/SnackbarProvider.js +7 -7
- package/es/TagSelector/TagSelector.js +17 -17
- package/es/TreeStructure/AddFolderButton.js +4 -4
- package/es/TreeStructure/ComboboxButton.js +7 -7
- package/es/TreeStructure/FolderItem.js +13 -13
- package/es/TreeStructure/FolderItems.js +6 -6
- package/es/TreeStructure/TreeStructure.js +9 -9
- package/es/ZendeskButton/ZendeskButton.js +2 -2
- package/es/i18n/index.js +1 -1
- package/es/index.js +5 -12
- package/es/locale/messages-en.js +1 -1
- package/es/locale/messages-nb.js +1 -1
- package/es/locale/messages-nn.js +1 -1
- package/es/locale/messages-se.js +1 -1
- package/es/locale/messages-sma.js +1 -1
- package/es/model/ContentType.js +3 -1
- package/es/styles.css +453 -103
- package/lib/Article/Article.d.ts +9 -30
- package/lib/Article/Article.js +104 -164
- package/lib/Article/ArticleByline.d.ts +1 -3
- package/lib/Article/ArticleByline.js +89 -56
- package/lib/Article/ArticleFootNotes.js +35 -24
- package/lib/Article/ArticleParagraph.js +2 -2
- package/lib/Article/index.d.ts +2 -5
- package/lib/Article/index.js +18 -24
- package/lib/AudioPlayer/AudioPlayer.js +20 -20
- package/lib/AudioPlayer/Controls.js +45 -45
- package/lib/AudioPlayer/SpeechControl.js +8 -8
- package/lib/BlogPost/BlogPost.js +6 -6
- package/lib/Breadcrumb/Breadcrumb.js +21 -29
- package/lib/Breadcrumb/BreadcrumbItem.js +22 -50
- package/lib/Breadcrumb/HomeBreadcrumb.d.ts +1 -2
- package/lib/Breadcrumb/HomeBreadcrumb.js +38 -82
- package/lib/CampaignBlock/CampaignBlock.js +12 -12
- package/lib/CodeBlock/CodeBlock.js +2 -2
- package/lib/Concept/Concept.js +11 -11
- package/lib/ContactBlock/ContactBlock.d.ts +6 -7
- package/lib/ContactBlock/ContactBlock.js +173 -184
- package/lib/ContactBlock/index.d.ts +3 -3
- package/lib/ContactBlock/index.js +13 -11
- package/lib/ContentLoader/index.js +12 -12
- package/lib/ContentPlaceholder/ContentPlaceholder.js +3 -3
- package/lib/ContentTypeBadge/ContentTypeBadge.d.ts +11 -12
- package/lib/ContentTypeBadge/ContentTypeBadge.js +83 -80
- package/lib/ContentTypeBadge/ContentTypeBadgeNew.d.ts +1 -2
- package/lib/ContentTypeBadge/ContentTypeBadgeNew.js +3 -2
- package/lib/ContentTypeHero/ContentTypeHero.d.ts +15 -0
- package/lib/ContentTypeHero/ContentTypeHero.js +57 -0
- package/lib/ContentTypeHero/index.d.ts +9 -0
- package/lib/ContentTypeHero/index.js +12 -0
- package/lib/CopyParagraphButton/CopyParagraphButton.js +13 -12
- package/lib/Embed/AudioEmbed.js +7 -7
- package/lib/Embed/BrightcoveEmbed.js +8 -8
- package/lib/Embed/CodeEmbed.js +6 -6
- package/lib/Embed/ConceptEmbed.js +13 -13
- package/lib/Embed/ConceptListEmbed.js +9 -9
- package/lib/Embed/ContentLinkEmbed.js +6 -6
- package/lib/Embed/CopyrightEmbed.js +3 -3
- package/lib/Embed/EmbedErrorPlaceholder.js +5 -5
- package/lib/Embed/ExternalEmbed.js +5 -5
- package/lib/Embed/FootnoteEmbed.js +5 -5
- package/lib/Embed/GlossEmbed.js +11 -11
- package/lib/Embed/H5pEmbed.js +5 -5
- package/lib/Embed/IframeEmbed.js +6 -6
- package/lib/Embed/ImageEmbed.js +10 -10
- package/lib/Embed/InlineTriggerButton.js +2 -2
- package/lib/Embed/RelatedContentEmbed.js +5 -5
- package/lib/Embed/UnknownEmbed.js +3 -3
- package/lib/Embed/UuDisclaimerEmbed.js +6 -6
- package/lib/ErrorMessage/ErrorMessage.js +14 -14
- package/lib/ErrorMessage/ErrorResourceAccessDenied.js +6 -6
- package/lib/FactBox/FactBox.js +5 -5
- package/lib/FileList/File.js +3 -3
- package/lib/FileList/FileList.js +6 -6
- package/lib/FileList/Format.js +6 -6
- package/lib/FileList/PdfFile.js +5 -5
- package/lib/FrontpageArticle/FrontpageArticle.js +7 -8
- package/lib/Gloss/Gloss.js +23 -23
- package/lib/Gloss/GlossExample.js +9 -9
- package/lib/Grid/Grid.js +4 -4
- package/lib/KeyFigure/KeyFigure.js +5 -5
- package/lib/Layout/LayoutItem.d.ts +3 -7
- package/lib/Layout/LayoutItem.js +27 -38
- package/lib/Layout/OneColumn.d.ts +3 -6
- package/lib/Layout/OneColumn.js +36 -33
- package/lib/Layout/PageContainer.d.ts +3 -6
- package/lib/Layout/PageContainer.js +24 -32
- package/lib/LicenseByline/EmbedByline.js +21 -21
- package/lib/LicenseByline/LicenseLink.js +3 -3
- package/lib/LinkBlock/LinkBlock.js +8 -8
- package/lib/LinkBlock/LinkBlockSection.js +4 -4
- package/lib/Messages/MessageBox.js +11 -11
- package/lib/Messages/index.d.ts +1 -2
- package/lib/Messages/index.js +0 -7
- package/lib/ProgrammeCard/ProgrammeCard.js +5 -5
- package/lib/RelatedArticleList/RelatedArticleList.js +15 -15
- package/lib/ResourceBox/ResourceBox.js +9 -9
- package/lib/SnackBar/DefaultSnackbar.js +5 -5
- package/lib/SnackBar/SnackbarProvider.js +7 -7
- package/lib/TagSelector/TagSelector.js +17 -17
- package/lib/TreeStructure/AddFolderButton.js +4 -4
- package/lib/TreeStructure/ComboboxButton.js +7 -7
- package/lib/TreeStructure/FolderItem.js +13 -13
- package/lib/TreeStructure/FolderItems.js +6 -6
- package/lib/TreeStructure/TreeStructure.js +9 -9
- package/lib/ZendeskButton/ZendeskButton.js +2 -2
- package/lib/i18n/index.d.ts +1 -1
- package/lib/i18n/index.js +6 -0
- package/lib/index.d.ts +8 -15
- package/lib/index.js +30 -139
- package/lib/locale/messages-en.js +1 -1
- package/lib/locale/messages-nb.js +1 -1
- package/lib/locale/messages-nn.js +1 -1
- package/lib/locale/messages-se.js +1 -1
- package/lib/locale/messages-sma.js +1 -1
- package/lib/model/ContentType.d.ts +1 -0
- package/lib/model/ContentType.js +4 -2
- package/lib/styles.css +453 -103
- package/package.json +10 -11
- package/src/Article/Article.tsx +101 -229
- package/src/Article/ArticleByline.tsx +82 -69
- package/src/Article/ArticleFootNotes.tsx +32 -36
- package/src/Article/index.ts +3 -7
- package/src/Breadcrumb/Breadcrumb.tsx +20 -18
- package/src/Breadcrumb/BreadcrumbItem.tsx +36 -59
- package/src/Breadcrumb/HomeBreadcrumb.stories.tsx +0 -12
- package/src/Breadcrumb/HomeBreadcrumb.tsx +33 -46
- package/src/ContactBlock/{Contactblock.stories.tsx → ContactBlock.stories.tsx} +3 -4
- package/src/ContactBlock/ContactBlock.tsx +165 -199
- package/src/ContactBlock/index.ts +3 -3
- package/src/ContentTypeBadge/ContentTypeBadge.tsx +77 -77
- package/src/ContentTypeBadge/ContentTypeBadgeNew.tsx +3 -1
- package/src/ContentTypeHero/ContentTypeHero.stories.tsx +76 -0
- package/src/ContentTypeHero/ContentTypeHero.tsx +55 -0
- package/src/ContentTypeHero/index.ts +10 -0
- package/src/CopyParagraphButton/CopyParagraphButton.tsx +10 -3
- package/src/Embed/AudioEmbed.stories.tsx +6 -8
- package/src/Embed/BrightcoveEmbed.stories.tsx +6 -8
- package/src/Embed/ConceptEmbed.stories.tsx +6 -8
- package/src/Embed/ExternalEmbed.stories.tsx +5 -5
- package/src/Embed/H5pEmbed.stories.tsx +6 -8
- package/src/Embed/IframeEmbed.stories.tsx +6 -8
- package/src/Embed/ImageEmbed.stories.tsx +6 -8
- package/src/Embed/RelatedContentEmbed.stories.tsx +6 -8
- package/src/Embed/UuDisclaimerEmbed.stories.tsx +6 -8
- package/src/FrontpageArticle/FrontpageArticle.tsx +1 -1
- package/src/Layout/LayoutItem.tsx +25 -41
- package/src/Layout/OneColumn.tsx +33 -33
- package/src/Layout/PageContainer.tsx +22 -24
- package/src/Messages/index.ts +1 -2
- package/src/i18n/index.ts +1 -0
- package/src/index.ts +11 -35
- package/src/locale/messages-en.ts +1 -1
- package/src/locale/messages-nb.ts +1 -1
- package/src/locale/messages-nn.ts +1 -1
- package/src/locale/messages-se.ts +1 -1
- package/src/locale/messages-sma.ts +1 -1
- package/src/model/ContentType.ts +2 -0
- package/es/Article/ArticleHeaderWrapper.js +0 -33
- package/es/CreatedBy/CreatedBy.js +0 -73
- package/es/CreatedBy/index.js +0 -10
- package/es/Hero/Hero.js +0 -68
- package/es/Hero/HeroContent.js +0 -16
- package/es/Hero/index.js +0 -10
- package/es/LanguageSelector/LanguageSelector.js +0 -87
- package/es/LanguageSelector/index.js +0 -10
- package/es/Logo/Logo.js +0 -52
- package/es/Logo/SvgLogo.js +0 -54
- package/es/Messages/MessageBanner.js +0 -72
- package/es/Search/ActiveFilterContent.js +0 -40
- package/es/Search/ActiveFilters.js +0 -112
- package/es/Search/ContentTypeResult.js +0 -151
- package/es/Search/ContentTypeResultStyles.js +0 -51
- package/es/Search/IsPathToHighlight.js +0 -12
- package/es/Search/LoadingWrapper.js +0 -31
- package/es/Search/SearchField.js +0 -110
- package/es/Search/SearchFieldForm.js +0 -33
- package/es/Search/SearchResult.js +0 -185
- package/es/Search/SearchResultSleeve.js +0 -229
- package/es/Search/index.js +0 -12
- package/lib/Article/ArticleHeaderWrapper.d.ts +0 -14
- package/lib/Article/ArticleHeaderWrapper.js +0 -40
- package/lib/CreatedBy/CreatedBy.d.ts +0 -15
- package/lib/CreatedBy/CreatedBy.js +0 -78
- package/lib/CreatedBy/index.d.ts +0 -9
- package/lib/CreatedBy/index.js +0 -16
- package/lib/Hero/Hero.d.ts +0 -25
- package/lib/Hero/Hero.js +0 -83
- package/lib/Hero/HeroContent.d.ts +0 -12
- package/lib/Hero/HeroContent.js +0 -23
- package/lib/Hero/index.d.ts +0 -10
- package/lib/Hero/index.js +0 -61
- package/lib/LanguageSelector/LanguageSelector.d.ts +0 -15
- package/lib/LanguageSelector/LanguageSelector.js +0 -92
- package/lib/LanguageSelector/index.d.ts +0 -9
- package/lib/LanguageSelector/index.js +0 -13
- package/lib/Logo/Logo.d.ts +0 -20
- package/lib/Logo/Logo.js +0 -58
- package/lib/Logo/SvgLogo.d.ts +0 -14
- package/lib/Logo/SvgLogo.js +0 -62
- package/lib/Logo/index.d.ts +0 -9
- package/lib/Logo/index.js +0 -16
- package/lib/Messages/MessageBanner.d.ts +0 -16
- package/lib/Messages/MessageBanner.js +0 -77
- package/lib/Search/ActiveFilterContent.d.ts +0 -23
- package/lib/Search/ActiveFilterContent.js +0 -47
- package/lib/Search/ActiveFilters.d.ts +0 -19
- package/lib/Search/ActiveFilters.js +0 -119
- package/lib/Search/ContentTypeResult.d.ts +0 -29
- package/lib/Search/ContentTypeResult.js +0 -159
- package/lib/Search/ContentTypeResultStyles.d.ts +0 -45
- package/lib/Search/ContentTypeResultStyles.js +0 -58
- package/lib/Search/IsPathToHighlight.d.ts +0 -8
- package/lib/Search/IsPathToHighlight.js +0 -19
- package/lib/Search/LoadingWrapper.d.ts +0 -12
- package/lib/Search/LoadingWrapper.js +0 -38
- package/lib/Search/SearchField.d.ts +0 -25
- package/lib/Search/SearchField.js +0 -117
- package/lib/Search/SearchFieldForm.d.ts +0 -15
- package/lib/Search/SearchFieldForm.js +0 -41
- package/lib/Search/SearchResult.d.ts +0 -43
- package/lib/Search/SearchResult.js +0 -194
- package/lib/Search/SearchResultSleeve.d.ts +0 -25
- package/lib/Search/SearchResultSleeve.js +0 -237
- package/lib/Search/index.d.ts +0 -11
- package/lib/Search/index.js +0 -33
- package/src/Article/ArticleHeaderWrapper.tsx +0 -38
- package/src/CreatedBy/CreatedBy.stories.tsx +0 -36
- package/src/CreatedBy/CreatedBy.tsx +0 -63
- package/src/CreatedBy/index.ts +0 -11
- package/src/Hero/Hero.stories.tsx +0 -35
- package/src/Hero/Hero.tsx +0 -129
- package/src/Hero/HeroContent.tsx +0 -43
- package/src/Hero/index.ts +0 -21
- package/src/LanguageSelector/LanguageSelector.stories.tsx +0 -44
- package/src/LanguageSelector/LanguageSelector.tsx +0 -101
- package/src/LanguageSelector/index.ts +0 -11
- package/src/Logo/Logo.stories.tsx +0 -47
- package/src/Logo/Logo.tsx +0 -47
- package/src/Logo/SvgLogo.tsx +0 -48
- package/src/Logo/index.ts +0 -11
- package/src/Messages/MessageBanner.stories.tsx +0 -31
- package/src/Messages/MessageBanner.tsx +0 -67
- package/src/Search/ActiveFilterContent.tsx +0 -64
- package/src/Search/ActiveFilters.tsx +0 -145
- package/src/Search/ContentTypeResult.tsx +0 -190
- package/src/Search/ContentTypeResultStyles.tsx +0 -172
- package/src/Search/IsPathToHighlight.ts +0 -12
- package/src/Search/LoadingWrapper.tsx +0 -44
- package/src/Search/SearchField.tsx +0 -175
- package/src/Search/SearchFieldForm.tsx +0 -64
- package/src/Search/SearchResult.tsx +0 -368
- package/src/Search/SearchResultSleeve.tsx +0 -367
- package/src/Search/__tests__/Highlight-test.ts +0 -66
- package/src/Search/index.ts +0 -14
|
@@ -2,6 +2,43 @@
|
|
|
2
2
|
"schemaVersion": "0.42.0",
|
|
3
3
|
"styles": {
|
|
4
4
|
"atomic": [
|
|
5
|
+
"width]___[value:100%",
|
|
6
|
+
"display]___[value:flex",
|
|
7
|
+
"flexDirection]___[value:column",
|
|
8
|
+
"color]___[value:text.default",
|
|
9
|
+
"gap]___[value:xxlarge",
|
|
10
|
+
"background]___[value:surface.default",
|
|
11
|
+
"paddingBlock]___[value:xsmall",
|
|
12
|
+
"paddingInline]___[value:8%",
|
|
13
|
+
"alignItems]___[value:center",
|
|
14
|
+
"overflowWrap]___[value:break-word",
|
|
15
|
+
"position]___[value:relative",
|
|
16
|
+
"paddingBlock]___[value:medium]___[cond:tablet",
|
|
17
|
+
"paddingBlock]___[value:xxlarge]___[cond:desktop",
|
|
18
|
+
"transform]___[value:scaleY(100) translateY(0.075em)]___[cond:& mjx-stretchy-v > mjx-ext > mjx-c",
|
|
19
|
+
"content]___[value:]___[cond:_after",
|
|
20
|
+
"display]___[value:table]___[cond:_after",
|
|
21
|
+
"clear]___[value:both]___[cond:_after",
|
|
22
|
+
"alignItems]___[value:flex-start",
|
|
23
|
+
"gap]___[value:xsmall",
|
|
24
|
+
"overflowWrap]___[value:anywhere]___[cond:& h1",
|
|
25
|
+
"position]___[value:absolute",
|
|
26
|
+
"right]___[value:8%",
|
|
27
|
+
"top]___[value:xsmall",
|
|
28
|
+
"top]___[value:medium]___[cond:tablet",
|
|
29
|
+
"top]___[value:xxlarge]___[cond:desktop",
|
|
30
|
+
"gap]___[value:medium",
|
|
31
|
+
"marginBlockStart]___[value:medium",
|
|
32
|
+
"paddingBlockStart]___[value:xsmall",
|
|
33
|
+
"borderTop]___[value:1px solid",
|
|
34
|
+
"borderColor]___[value:stroke.subtle",
|
|
35
|
+
"flexDirection]___[value:column-reverse",
|
|
36
|
+
"gap]___[value:3xsmall",
|
|
37
|
+
"justifyContent]___[value:space-between",
|
|
38
|
+
"textStyle]___[value:body.medium",
|
|
39
|
+
"flexDirection]___[value:row]___[cond:tabletWide",
|
|
40
|
+
"paddingBlockStart]___[value:xxlarge",
|
|
41
|
+
"listStyle]___[value:none",
|
|
5
42
|
"textAlign]___[value:center]___[cond:&[data-align=\"center\"]",
|
|
6
43
|
"direction]___[value:rtl]___[cond:&:has(span[dir=\"rtl\"])",
|
|
7
44
|
"border]___[value:1px solid",
|
|
@@ -10,9 +47,7 @@
|
|
|
10
47
|
"boxShadow]___[value:full",
|
|
11
48
|
"marginBlockEnd]___[value:4xsmall",
|
|
12
49
|
"overflow]___[value:hidden",
|
|
13
|
-
"display]___[value:flex",
|
|
14
50
|
"display]___[value:block]___[cond:tabletWideDown",
|
|
15
|
-
"alignItems]___[value:center",
|
|
16
51
|
"flex]___[value:1 0 auto",
|
|
17
52
|
"width]___[value:surface.4xsmall",
|
|
18
53
|
"height]___[value:surface.4xsmall",
|
|
@@ -25,15 +60,10 @@
|
|
|
25
60
|
"maxWidth]___[value:100%]___[cond:tabletWideDown",
|
|
26
61
|
"width]___[value:100%]___[cond:tabletWideDown",
|
|
27
62
|
"height]___[value:auto]___[cond:tabletWideDown",
|
|
28
|
-
"alignItems]___[value:flex-start",
|
|
29
|
-
"flexDirection]___[value:column",
|
|
30
|
-
"gap]___[value:xsmall",
|
|
31
63
|
"padding]___[value:xsmall",
|
|
32
|
-
"width]___[value:100%",
|
|
33
64
|
"paddingBlock]___[value:xsmall]___[cond:&[data-has-image='true']<___>tablet",
|
|
34
65
|
"paddingInline]___[value:medium]___[cond:&[data-has-image='true']<___>tablet",
|
|
35
66
|
"width]___[value:100%]___[cond:tabletWide",
|
|
36
|
-
"flexDirection]___[value:row]___[cond:tabletWide",
|
|
37
67
|
"justifyContent]___[value:space-between]___[cond:tabletWide",
|
|
38
68
|
"borderBlockStart]___[value:1px solid",
|
|
39
69
|
"paddingBlock]___[value:medium",
|
|
@@ -45,7 +75,6 @@
|
|
|
45
75
|
"borderBottomRadius]___[value:xsmall",
|
|
46
76
|
"justifyContent]___[value:center",
|
|
47
77
|
"background]___[value:background.default",
|
|
48
|
-
"paddingBlock]___[value:xsmall",
|
|
49
78
|
"paddingInline]___[value:medium",
|
|
50
79
|
"display]___[value:grid]___[cond:tabletWideDown",
|
|
51
80
|
"paddingBlock]___[value:xsmall]___[cond:tabletWideDown",
|
|
@@ -70,10 +99,7 @@
|
|
|
70
99
|
"gridArea]___[value:speed",
|
|
71
100
|
"height]___[value:surface.3xsmall",
|
|
72
101
|
"srOnly]___[value:true",
|
|
73
|
-
"color]___[value:text.default",
|
|
74
102
|
"backgroundColor]___[value:background.default",
|
|
75
|
-
"gap]___[value:medium",
|
|
76
|
-
"borderColor]___[value:stroke.subtle",
|
|
77
103
|
"transitionDuration]___[value:fast",
|
|
78
104
|
"transitionProperty]___[value:background-color, border-color, max-width",
|
|
79
105
|
"transitionTimingFunction]___[value:default",
|
|
@@ -91,18 +117,27 @@
|
|
|
91
117
|
"border]___[value:0",
|
|
92
118
|
"display]___[value:inline-block",
|
|
93
119
|
"width]___[value:fit-content",
|
|
94
|
-
"position]___[value:relative",
|
|
95
120
|
"maxWidth]___[value:8xl",
|
|
121
|
+
"flexWrap]___[value:wrap",
|
|
122
|
+
"alignItems]___[value:flex-start]___[cond:mobileDown",
|
|
123
|
+
"justifyContent]___[value:center]___[cond:mobileDown",
|
|
124
|
+
"flexDirection]___[value:column]___[cond:mobileDown",
|
|
125
|
+
"gap]___[value:xxsmall]___[cond:mobileDown",
|
|
126
|
+
"color]___[value:inherit",
|
|
127
|
+
"gap]___[value:4xsmall",
|
|
128
|
+
"alignItems]___[value:flex-end",
|
|
129
|
+
"display]___[value:block]___[cond:tabletDown",
|
|
130
|
+
"textDecoration]___[value:underline",
|
|
131
|
+
"textDecoration]___[value:none]___[cond:_hover",
|
|
132
|
+
"textDecoration]___[value:none]___[cond:_focusVisible",
|
|
133
|
+
"display]___[value:none]___[cond:tabletDown",
|
|
96
134
|
"maxWidth]___[value:surface.xsmall",
|
|
97
135
|
"maxWidth]___[value:surface.medium]___[cond:mobileWide",
|
|
98
136
|
"maxWidth]___[value:1100px]___[cond:tabletWide",
|
|
99
137
|
"gap]___[value:xxsmall",
|
|
100
|
-
"textDecoration]___[value:underline",
|
|
101
|
-
"textDecoration]___[value:none]___[cond:_hover",
|
|
102
138
|
"alignSelf]___[value:center",
|
|
103
139
|
"height]___[value:215px",
|
|
104
140
|
"height]___[value:340px]___[cond:desktop",
|
|
105
|
-
"color]___[value:inherit",
|
|
106
141
|
"borderLeft]___[value:4px solid",
|
|
107
142
|
"borderLeftColor]___[value:stroke.default",
|
|
108
143
|
"boxSizing]___[value:border-box",
|
|
@@ -138,6 +173,60 @@
|
|
|
138
173
|
"opacity]___[value:0.7]___[cond:& .token.namespace",
|
|
139
174
|
"display]___[value:inline",
|
|
140
175
|
"display]___[value:inline]___[cond:& p",
|
|
176
|
+
"maxWidth]___[value:744px",
|
|
177
|
+
"minWidth]___[value:surface.xxsmall",
|
|
178
|
+
"padding]___[value:medium",
|
|
179
|
+
"alignItems]___[value:unset]___[cond:tablet",
|
|
180
|
+
"flexDirection]___[value:row]___[cond:tablet",
|
|
181
|
+
"zIndex]___[value:base",
|
|
182
|
+
"content]___[value:\"\"]___[cond:_before",
|
|
183
|
+
"position]___[value:absolute]___[cond:_before",
|
|
184
|
+
"top]___[value:-60px]___[cond:_before",
|
|
185
|
+
"left]___[value:-50px]___[cond:_before",
|
|
186
|
+
"right]___[value:0]___[cond:_before",
|
|
187
|
+
"bottom]___[value:0]___[cond:_before",
|
|
188
|
+
"height]___[value:calc(100% + 50px)]___[cond:_before",
|
|
189
|
+
"width]___[value:surface.3xlarge]___[cond:_before",
|
|
190
|
+
"transform]___[value:rotate(-4deg)]___[cond:_before",
|
|
191
|
+
"zIndex]___[value:hide]___[cond:_before",
|
|
192
|
+
"backgroundColor]___[value:surface.brand.3]___[cond:_before",
|
|
193
|
+
"backgroundColor]___[value:surface.brand.3.moderate]___[cond:_before",
|
|
194
|
+
"backgroundColor]___[value:surface.brand.3.subtle]___[cond:_before",
|
|
195
|
+
"display]___[value:none]___[cond:tabletDown<___>_before",
|
|
196
|
+
"justifyContent]___[value:flex-start",
|
|
197
|
+
"content]___[value:\"\"]___[cond:tabletDown<___>_before",
|
|
198
|
+
"position]___[value:absolute]___[cond:tabletDown<___>_before",
|
|
199
|
+
"top]___[value:-50px]___[cond:tabletDown<___>_before",
|
|
200
|
+
"left]___[value:-50px]___[cond:tabletDown<___>_before",
|
|
201
|
+
"right]___[value:0]___[cond:tabletDown<___>_before",
|
|
202
|
+
"bottom]___[value:0]___[cond:tabletDown<___>_before",
|
|
203
|
+
"height]___[value:surface.xxsmall]___[cond:tabletDown<___>_before",
|
|
204
|
+
"width]___[value:surface.3xlarge]___[cond:tabletDown<___>_before",
|
|
205
|
+
"transform]___[value:rotate(-4deg)]___[cond:tabletDown<___>_before",
|
|
206
|
+
"zIndex]___[value:hide]___[cond:tabletDown<___>_before",
|
|
207
|
+
"width]___[value:surface.xsmall",
|
|
208
|
+
"height]___[value:surface.xsmall",
|
|
209
|
+
"fontFamily]___[value:serif",
|
|
210
|
+
"display]___[value:inline-flex",
|
|
211
|
+
"borderRadius]___[value:100%",
|
|
212
|
+
"color]___[value:var(--icon-color)",
|
|
213
|
+
"width]___[value:20px",
|
|
214
|
+
"height]___[value:20px",
|
|
215
|
+
"width]___[value:10px]___[cond:& svg",
|
|
216
|
+
"height]___[value:10px]___[cond:& svg",
|
|
217
|
+
"height]___[value:26px]___[cond:tablet",
|
|
218
|
+
"width]___[value:26px]___[cond:tablet",
|
|
219
|
+
"width]___[value:12px]___[cond:& svg<___>tablet",
|
|
220
|
+
"height]___[value:12px]___[cond:& svg<___>tablet",
|
|
221
|
+
"width]___[value:34px",
|
|
222
|
+
"height]___[value:34px",
|
|
223
|
+
"width]___[value:50px",
|
|
224
|
+
"height]___[value:50px",
|
|
225
|
+
"width]___[value:25px]___[cond:& svg",
|
|
226
|
+
"height]___[value:25px]___[cond:& svg",
|
|
227
|
+
"border]___[value:2px solid",
|
|
228
|
+
"borderColor]___[value:var(--icon-color)",
|
|
229
|
+
"backgroundColor]___[value:var(--background-color)",
|
|
141
230
|
"marginInlineStart]___[value:xsmall",
|
|
142
231
|
"height]___[value:auto",
|
|
143
232
|
"textStyle]___[value:label.large",
|
|
@@ -147,7 +236,6 @@
|
|
|
147
236
|
"display]___[value:block]___[cond:& li",
|
|
148
237
|
"color]___[value:text.error",
|
|
149
238
|
"backgroundColor]___[value:surface.disabled",
|
|
150
|
-
"height]___[value:surface.xsmall",
|
|
151
239
|
"fill]___[value:text.subtle]___[cond:& svg",
|
|
152
240
|
"height]___[value:90%]___[cond:& svg",
|
|
153
241
|
"width]___[value:90%]___[cond:& svg",
|
|
@@ -165,8 +253,6 @@
|
|
|
165
253
|
"background]___[value:background.default]___[cond:_hover<___>& [data-byline-button]",
|
|
166
254
|
"transform]___[value:scale(1.2)]___[cond:_hover<___>& button[data-expanded]",
|
|
167
255
|
"transform]___[value:rotate(-45deg)]___[cond:& button[data-expanded='true']<___>& svg",
|
|
168
|
-
"position]___[value:absolute",
|
|
169
|
-
"zIndex]___[value:base",
|
|
170
256
|
"bottom]___[value:0",
|
|
171
257
|
"right]___[value:0",
|
|
172
258
|
"transitionProperty]___[value:transform, background-color, color",
|
|
@@ -178,11 +264,9 @@
|
|
|
178
264
|
"transitionTimingFunction]___[value:ease-out]___[cond:& svg",
|
|
179
265
|
"fill]___[value:primary]___[cond:& svg",
|
|
180
266
|
"padding]___[value:0",
|
|
181
|
-
"top]___[value:xsmall",
|
|
182
267
|
"right]___[value:xsmall",
|
|
183
268
|
"width]___[value:medium",
|
|
184
269
|
"height]___[value:medium",
|
|
185
|
-
"border]___[value:2px solid",
|
|
186
270
|
"borderColor]___[value:background.default",
|
|
187
271
|
"color]___[value:background.default",
|
|
188
272
|
"backgroundColor]___[value:surface.action",
|
|
@@ -207,7 +291,6 @@
|
|
|
207
291
|
"outlineColor]___[value:stroke.default]___[cond:_focusVisible<___>_after",
|
|
208
292
|
"outlineOffset]___[value:3px]___[cond:_focusVisible<___>_after",
|
|
209
293
|
"outlineStyle]___[value:solid]___[cond:_focusVisible<___>_after",
|
|
210
|
-
"textStyle]___[value:body.medium",
|
|
211
294
|
"textAlign]___[value:center",
|
|
212
295
|
"color]___[value:text.strong]___[cond:& a",
|
|
213
296
|
"marginTop]___[value:0]___[cond:& h1",
|
|
@@ -217,7 +300,6 @@
|
|
|
217
300
|
"marginBlock]___[value:xxlarge",
|
|
218
301
|
"marginTop]___[value:3xsmall",
|
|
219
302
|
"marginLeft]___[value:3xsmall",
|
|
220
|
-
"padding]___[value:medium",
|
|
221
303
|
"transitionProperty]___[value:max-height",
|
|
222
304
|
"transitionDuration]___[value:slow",
|
|
223
305
|
"transitionTimingFunction]___[value:ease-in-out",
|
|
@@ -248,20 +330,37 @@
|
|
|
248
330
|
"transitionDuration]___[value:fast]___[cond:& svg",
|
|
249
331
|
"transform]___[value:rotate(180deg)]___[cond:_open<___>& svg",
|
|
250
332
|
"display]___[value:none]___[cond:_print",
|
|
251
|
-
"justifyContent]___[value:space-between",
|
|
252
333
|
"gap]___[value:small",
|
|
253
334
|
"paddingInline]___[value:0",
|
|
254
335
|
"marginBlockStart]___[value:3xsmall",
|
|
255
336
|
"paddingBlock]___[value:small",
|
|
256
|
-
"borderTop]___[value:1px solid",
|
|
257
337
|
"background]___[value:surface.brand.1.subtle]___[cond:_first",
|
|
258
338
|
"borderColor]___[value:stroke.default]___[cond:_first",
|
|
259
339
|
"fontWeight]___[value:bold]___[cond:_first<___>& p",
|
|
260
340
|
"fontStyle]___[value:italic",
|
|
261
|
-
"
|
|
341
|
+
"position]___[value:relative!",
|
|
342
|
+
"width]___[value:83.333%",
|
|
343
|
+
"right]___[value:auto !important",
|
|
344
|
+
"left]___[value:8.333%",
|
|
345
|
+
"position]___[value:relative!]___[cond:tablet",
|
|
346
|
+
"width]___[value:83.333%]___[cond:tablet",
|
|
347
|
+
"right]___[value:auto!]___[cond:tablet",
|
|
348
|
+
"left]___[value:8.333%]___[cond:tablet",
|
|
349
|
+
"marginLeft]___[value:auto",
|
|
350
|
+
"marginRight]___[value:auto",
|
|
351
|
+
"paddingLeft]___[value:18px",
|
|
352
|
+
"paddingRight]___[value:18px",
|
|
353
|
+
"paddingLeft]___[value:medium]___[cond:mobileWide",
|
|
354
|
+
"paddingRight]___[value:medium]___[cond:mobileWide",
|
|
355
|
+
"content]___[value:\"\"!]___[cond:_after",
|
|
356
|
+
"display]___[value:block!]___[cond:_after",
|
|
357
|
+
"clear]___[value:both!]___[cond:_after",
|
|
358
|
+
"maxWidth]___[value:1150px",
|
|
359
|
+
"maxWidth]___[value:1024px",
|
|
360
|
+
"minHeight]___[value:100vh",
|
|
361
|
+
"backgroundColor]___[value:#f8f8f8]___[cond:tablet",
|
|
262
362
|
"borderColor]___[value:stroke.error",
|
|
263
363
|
"background]___[value:surface.dangerSubtle",
|
|
264
|
-
"display]___[value:inline-flex",
|
|
265
364
|
"whiteSpace]___[value:pre-wrap",
|
|
266
365
|
"display]___[value:grid]___[cond:mobileWideDown",
|
|
267
366
|
"gridTemplateColumns]___[value:1fr auto]___[cond:mobileWideDown",
|
|
@@ -288,9 +387,6 @@
|
|
|
288
387
|
"width]___[value:large]___[cond:_hover<___>& [data-forward]",
|
|
289
388
|
"height]___[value:large]___[cond:_hover<___>& [data-forward]",
|
|
290
389
|
"color]___[value:icon.strong",
|
|
291
|
-
"listStyle]___[value:none",
|
|
292
|
-
"content]___[value:\"\"]___[cond:_before",
|
|
293
|
-
"position]___[value:absolute]___[cond:_before",
|
|
294
390
|
"inset]___[value:0]___[cond:_before",
|
|
295
391
|
"zIndex]___[value:0]___[cond:_before",
|
|
296
392
|
"display]___[value:grid",
|