@ndla/ui 55.0.12-alpha.0 → 55.0.14-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/all-aout.js +0 -0
- package/dist/all.css +1 -0
- package/dist/panda.buildinfo.json +289 -0
- package/dist/styles.css +1197 -0
- package/es/Article/Article.js +3 -4
- package/es/Article/ArticleByline.js +9 -9
- package/es/Article/ArticleFootNotes.js +4 -4
- package/es/Article/ArticleParagraph.js +11 -13
- package/es/AudioPlayer/AudioPlayer.js +142 -163
- package/es/AudioPlayer/Controls.js +187 -203
- package/es/AudioPlayer/SpeechControl.js +13 -11
- package/es/BlogPost/BlogPost.js +85 -23
- package/es/CampaignBlock/CampaignBlock.js +103 -69
- package/es/CodeBlock/CodeBlock.js +88 -96
- package/es/Concept/Concept.js +69 -0
- package/es/ContactBlock/ContactBlock.js +54 -40
- package/es/ContentLoader/index.js +7 -7
- package/es/ContentTypeBadge/ContentTypeBadgeNew.js +48 -0
- package/es/CopyParagraphButton/CopyParagraphButton.js +4 -4
- package/es/Embed/AudioEmbed.js +6 -11
- package/es/Embed/BrightcoveEmbed.js +25 -39
- package/es/Embed/CodeEmbed.js +58 -10
- package/es/Embed/ConceptEmbed.js +57 -306
- package/es/Embed/ConceptListEmbed.js +18 -24
- package/es/Embed/ContentLinkEmbed.js +10 -10
- package/es/Embed/CopyrightEmbed.js +4 -21
- package/es/Embed/EmbedErrorPlaceholder.js +32 -17
- package/es/Embed/ExternalEmbed.js +17 -28
- package/es/Embed/FootnoteEmbed.js +14 -11
- package/es/Embed/GlossEmbed.js +68 -0
- package/es/Embed/H5pEmbed.js +20 -21
- package/es/Embed/IframeEmbed.js +17 -15
- package/es/Embed/ImageEmbed.js +167 -122
- package/es/Embed/InlineTriggerButton.js +70 -0
- package/es/Embed/RelatedContentEmbed.js +8 -10
- package/es/Embed/UnknownEmbed.js +9 -9
- package/es/Embed/UuDisclaimerEmbed.js +16 -27
- package/es/Embed/index.js +1 -3
- package/es/ErrorMessage/ErrorMessage.js +42 -23
- package/es/ErrorMessage/ErrorResourceAccessDenied.js +8 -6
- package/es/FactBox/FactBox.js +118 -47
- package/es/FileList/File.js +1 -1
- package/es/FileList/Format.js +3 -3
- package/es/FileList/PdfFile.js +23 -5
- package/es/FrontpageArticle/FrontpageArticle.js +1 -1
- package/es/Gloss/Gloss.js +122 -94
- package/es/Gloss/GlossExample.js +49 -52
- package/es/Grid/Grid.js +1 -1
- package/es/KeyFigure/KeyFigure.js +2 -2
- package/es/LanguageSelector/LanguageSelector.js +2 -2
- package/es/LicenseByline/EmbedByline.js +5 -6
- package/es/LicenseByline/LicenseDescription.js +1 -1
- package/es/LicenseByline/LicenseLink.js +1 -2
- package/es/LinkBlock/LinkBlock.js +61 -33
- package/es/LinkBlock/LinkBlockSection.js +9 -6
- package/es/Logo/Logo.js +1 -30
- package/es/Messages/MessageBox.js +1 -1
- package/es/RelatedArticleList/RelatedArticleList.js +73 -90
- package/es/ResourceBox/ResourceBox.js +67 -44
- package/es/Search/ActiveFilters.js +1 -1
- package/es/Search/ContentTypeResult.js +9 -6
- package/es/Search/ContentTypeResultStyles.js +1 -1
- package/es/Search/IsPathToHighlight.js +1 -1
- package/es/Search/SearchField.js +6 -8
- package/es/Search/SearchResult.js +14 -19
- package/es/Search/SearchResultSleeve.js +14 -16
- package/es/SnackBar/SnackbarProvider.js +8 -11
- package/es/TagSelector/TagSelector.js +124 -131
- package/es/TreeStructure/AddFolderButton.js +4 -6
- package/es/TreeStructure/ComboboxButton.js +4 -7
- package/es/TreeStructure/FolderItem.js +12 -15
- package/es/TreeStructure/FolderItems.js +3 -3
- package/es/TreeStructure/TreeStructure.js +9 -12
- package/es/TreeStructure/helperFunctions.js +1 -1
- package/es/ZendeskButton/ZendeskButton.js +55 -0
- package/es/i18n/formatNestedMessages.js +1 -1
- package/es/i18n/index.js +2 -1
- package/es/i18n/useComponentTranslations.js +83 -0
- package/es/index.js +6 -12
- package/es/locale/messages-en.js +39 -12
- package/es/locale/messages-nb.js +39 -12
- package/es/locale/messages-nn.js +39 -12
- package/es/locale/messages-se.js +39 -12
- package/es/locale/messages-sma.js +39 -12
- package/es/model/ContentType.js +3 -0
- package/es/styles.css +1197 -0
- package/es/utils/relativeUrl.js +3 -3
- package/lib/Article/Article.js +3 -4
- package/lib/Article/ArticleByline.js +9 -9
- package/lib/Article/ArticleFootNotes.js +4 -4
- package/lib/Article/ArticleParagraph.js +12 -14
- package/lib/AudioPlayer/AudioPlayer.d.ts +1 -2
- package/lib/AudioPlayer/AudioPlayer.js +142 -162
- package/lib/AudioPlayer/Controls.js +190 -205
- package/lib/AudioPlayer/SpeechControl.js +13 -11
- package/lib/BlogPost/BlogPost.d.ts +2 -2
- package/lib/BlogPost/BlogPost.js +85 -24
- package/lib/CampaignBlock/CampaignBlock.d.ts +2 -2
- package/lib/CampaignBlock/CampaignBlock.js +106 -69
- package/lib/CodeBlock/CodeBlock.d.ts +5 -8
- package/lib/CodeBlock/CodeBlock.js +88 -96
- package/lib/Concept/Concept.d.ts +18 -0
- package/lib/Concept/Concept.js +75 -0
- package/lib/ContactBlock/ContactBlock.js +55 -43
- package/lib/ContentLoader/index.js +7 -7
- package/lib/ContentTypeBadge/ContentTypeBadgeNew.d.ts +17 -0
- package/lib/ContentTypeBadge/ContentTypeBadgeNew.js +56 -0
- package/lib/CopyParagraphButton/CopyParagraphButton.js +4 -4
- package/lib/Embed/AudioEmbed.js +7 -12
- package/lib/Embed/BrightcoveEmbed.d.ts +1 -2
- package/lib/Embed/BrightcoveEmbed.js +28 -40
- package/lib/Embed/CodeEmbed.js +56 -8
- package/lib/Embed/ConceptEmbed.d.ts +15 -21
- package/lib/Embed/ConceptEmbed.js +58 -306
- package/lib/Embed/ConceptListEmbed.js +21 -26
- package/lib/Embed/ContentLinkEmbed.js +10 -11
- package/lib/Embed/CopyrightEmbed.js +6 -22
- package/lib/Embed/EmbedErrorPlaceholder.d.ts +4 -3
- package/lib/Embed/EmbedErrorPlaceholder.js +32 -18
- package/lib/Embed/ExternalEmbed.d.ts +1 -2
- package/lib/Embed/ExternalEmbed.js +20 -29
- package/lib/Embed/FootnoteEmbed.js +14 -12
- package/lib/Embed/GlossEmbed.d.ts +13 -0
- package/lib/Embed/GlossEmbed.js +76 -0
- package/lib/Embed/H5pEmbed.d.ts +1 -2
- package/lib/Embed/H5pEmbed.js +22 -21
- package/lib/Embed/IframeEmbed.d.ts +1 -2
- package/lib/Embed/IframeEmbed.js +19 -17
- package/lib/Embed/ImageEmbed.d.ts +1 -2
- package/lib/Embed/ImageEmbed.js +167 -123
- package/lib/Embed/InlineTriggerButton.d.ts +11 -0
- package/lib/Embed/InlineTriggerButton.js +76 -0
- package/lib/Embed/RelatedContentEmbed.js +8 -10
- package/lib/Embed/UnknownEmbed.js +9 -10
- package/lib/Embed/UuDisclaimerEmbed.js +18 -28
- package/lib/Embed/index.d.ts +2 -3
- package/lib/Embed/index.js +2 -9
- package/lib/ErrorMessage/ErrorMessage.js +41 -24
- package/lib/ErrorMessage/ErrorResourceAccessDenied.js +7 -6
- package/lib/FactBox/FactBox.d.ts +0 -1
- package/lib/FactBox/FactBox.js +119 -46
- package/lib/FileList/File.js +1 -1
- package/lib/FileList/Format.js +3 -3
- package/lib/FileList/PdfFile.js +23 -5
- package/lib/FrontpageArticle/FrontpageArticle.js +1 -1
- package/lib/Gloss/Gloss.d.ts +10 -2
- package/lib/Gloss/Gloss.js +122 -93
- package/lib/Gloss/GlossExample.d.ts +3 -5
- package/lib/Gloss/GlossExample.js +49 -53
- package/lib/Grid/Grid.js +1 -1
- package/lib/KeyFigure/KeyFigure.js +2 -2
- package/lib/LanguageSelector/LanguageSelector.js +2 -2
- package/lib/LicenseByline/EmbedByline.js +5 -6
- package/lib/LicenseByline/LicenseDescription.js +1 -1
- package/lib/LicenseByline/LicenseLink.js +1 -2
- package/lib/LinkBlock/LinkBlock.js +62 -34
- package/lib/LinkBlock/LinkBlockSection.js +9 -7
- package/lib/Logo/Logo.d.ts +1 -3
- package/lib/Logo/Logo.js +2 -30
- package/lib/Messages/MessageBox.js +1 -1
- package/lib/RelatedArticleList/RelatedArticleList.d.ts +4 -4
- package/lib/RelatedArticleList/RelatedArticleList.js +77 -93
- package/lib/ResourceBox/ResourceBox.js +67 -45
- package/lib/Search/ActiveFilters.js +1 -1
- package/lib/Search/ContentTypeResult.js +9 -6
- package/lib/Search/ContentTypeResultStyles.js +1 -1
- package/lib/Search/IsPathToHighlight.js +1 -1
- package/lib/Search/SearchField.js +6 -8
- package/lib/Search/SearchResult.js +14 -19
- package/lib/Search/SearchResultSleeve.js +14 -16
- package/lib/SnackBar/SnackbarProvider.js +8 -11
- package/lib/TagSelector/TagSelector.d.ts +27 -12
- package/lib/TagSelector/TagSelector.js +126 -131
- package/lib/TreeStructure/AddFolderButton.js +4 -6
- package/lib/TreeStructure/ComboboxButton.js +4 -7
- package/lib/TreeStructure/FolderItem.js +12 -15
- package/lib/TreeStructure/FolderItems.js +3 -3
- package/lib/TreeStructure/TreeStructure.js +9 -12
- package/lib/TreeStructure/helperFunctions.js +1 -1
- package/lib/ZendeskButton/ZendeskButton.d.ts +19 -0
- package/lib/ZendeskButton/ZendeskButton.js +61 -0
- package/lib/i18n/formatNestedMessages.js +1 -1
- package/lib/i18n/index.d.ts +1 -0
- package/lib/i18n/index.js +20 -1
- package/lib/i18n/useComponentTranslations.d.ts +14 -0
- package/lib/i18n/useComponentTranslations.js +93 -0
- package/lib/index.d.ts +7 -14
- package/lib/index.js +77 -89
- package/lib/locale/messages-en.d.ts +27 -0
- package/lib/locale/messages-en.js +39 -12
- package/lib/locale/messages-nb.d.ts +27 -0
- package/lib/locale/messages-nb.js +39 -12
- package/lib/locale/messages-nn.d.ts +27 -0
- package/lib/locale/messages-nn.js +39 -12
- package/lib/locale/messages-se.d.ts +27 -0
- package/lib/locale/messages-se.js +39 -12
- package/lib/locale/messages-sma.d.ts +27 -0
- package/lib/locale/messages-sma.js +39 -12
- package/lib/model/ContentType.d.ts +3 -0
- package/lib/model/ContentType.js +4 -1
- package/lib/styles.css +1197 -0
- package/lib/types.d.ts +1 -0
- package/lib/utils/relativeUrl.js +3 -3
- package/package.json +18 -15
- package/src/Article/ArticleParagraph.tsx +11 -9
- package/src/AudioPlayer/AudioPlayer.tsx +139 -176
- package/src/AudioPlayer/Controls.tsx +210 -250
- package/src/AudioPlayer/SpeechControl.tsx +9 -7
- package/src/BlogPost/BlogPost.tsx +82 -58
- package/src/CampaignBlock/CampaignBlock.tsx +92 -55
- package/src/CodeBlock/CodeBlock.stories.tsx +0 -43
- package/src/CodeBlock/CodeBlock.tsx +91 -202
- package/src/Concept/Concept.stories.tsx +142 -0
- package/src/Concept/Concept.tsx +73 -0
- package/src/ContactBlock/ContactBlock.tsx +10 -2
- package/src/ContentTypeBadge/ContentTypeBadgeNew.stories.tsx +70 -0
- package/src/ContentTypeBadge/ContentTypeBadgeNew.tsx +69 -0
- package/src/Embed/AudioEmbed.tsx +2 -2
- package/src/Embed/BrightcoveEmbed.stories.tsx +0 -3
- package/src/Embed/BrightcoveEmbed.tsx +17 -19
- package/src/Embed/CodeEmbed.stories.tsx +95 -0
- package/src/Embed/CodeEmbed.tsx +62 -7
- package/src/Embed/ConceptEmbed.stories.tsx +1 -105
- package/src/Embed/ConceptEmbed.tsx +60 -393
- package/src/Embed/ConceptListEmbed.tsx +20 -19
- package/src/Embed/ContentLinkEmbed.tsx +8 -10
- package/src/Embed/CopyrightEmbed.tsx +1 -11
- package/src/Embed/EmbedErrorPlaceholder.tsx +31 -28
- package/src/Embed/ExternalEmbed.tsx +14 -17
- package/src/Embed/FootnoteEmbed.stories.tsx +2 -5
- package/src/Embed/FootnoteEmbed.tsx +13 -16
- package/src/Embed/GlossEmbed.stories.tsx +140 -0
- package/src/Embed/GlossEmbed.tsx +64 -0
- package/src/Embed/H5pEmbed.tsx +22 -16
- package/src/Embed/IframeEmbed.tsx +12 -6
- package/src/Embed/ImageEmbed.stories.tsx +53 -11
- package/src/Embed/ImageEmbed.tsx +162 -166
- package/src/Embed/InlineTriggerButton.tsx +72 -0
- package/src/Embed/UnknownEmbed.tsx +6 -7
- package/src/Embed/UuDisclaimerEmbed.stories.tsx +4 -4
- package/src/Embed/UuDisclaimerEmbed.tsx +17 -25
- package/src/Embed/index.ts +2 -3
- package/src/ErrorMessage/ErrorMessage.tsx +40 -29
- package/src/ErrorMessage/ErrorResourceAccessDenied.tsx +8 -6
- package/src/FactBox/FactBox.tsx +115 -115
- package/src/FactBox/Factbox.stories.tsx +43 -27
- package/src/FileList/FileList.stories.tsx +6 -1
- package/src/FileList/PdfFile.tsx +22 -5
- package/src/Gloss/Gloss.stories.tsx +107 -1
- package/src/Gloss/Gloss.tsx +143 -156
- package/src/Gloss/GlossExample.tsx +51 -77
- package/src/LinkBlock/LinkBlock.stories.tsx +8 -10
- package/src/LinkBlock/LinkBlock.tsx +54 -59
- package/src/LinkBlock/LinkBlockSection.tsx +9 -12
- package/src/Logo/Logo.stories.tsx +0 -1
- package/src/Logo/Logo.tsx +2 -30
- package/src/RelatedArticleList/RelatedArticleList.tsx +69 -88
- package/src/ResourceBox/ResourceBox.tsx +65 -73
- package/src/Search/ContentTypeResult.tsx +9 -3
- package/src/Search/SearchResultSleeve.tsx +5 -2
- package/src/TagSelector/TagSelector.stories.tsx +92 -68
- package/src/TagSelector/TagSelector.tsx +161 -126
- package/src/ZendeskButton/ZendeskButton.tsx +58 -0
- package/src/i18n/index.ts +5 -0
- package/src/i18n/useComponentTranslations.ts +72 -0
- package/src/index.ts +27 -18
- package/src/locale/messages-en.ts +29 -2
- package/src/locale/messages-nb.ts +29 -2
- package/src/locale/messages-nn.ts +29 -2
- package/src/locale/messages-se.ts +29 -2
- package/src/locale/messages-sma.ts +29 -2
- package/src/model/ContentType.ts +3 -0
- package/src/types.ts +2 -0
- package/es/DefinitionList/DefinitionDescription.js +0 -28
- package/es/DefinitionList/DefinitionTerm.js +0 -28
- package/es/DefinitionList/index.js +0 -10
- package/es/Embed/conceptComponents.js +0 -155
- package/es/ExpandableBox/ExpandableBox.js +0 -29
- package/es/ExpandableBox/index.js +0 -9
- package/es/Figure/Figure.js +0 -73
- package/es/Figure/index.js +0 -9
- package/es/FramedContent/FramedContent.js +0 -28
- package/es/FramedContent/index.js +0 -10
- package/es/Image/Image.js +0 -100
- package/es/Image/ImageLink.js +0 -39
- package/es/Image/index.js +0 -12
- package/es/LetterFilter/LetterFilter.js +0 -54
- package/es/LetterFilter/alphabet.js +0 -9
- package/es/LetterFilter/index.js +0 -10
- package/es/Notion/Notion.js +0 -76
- package/es/Notion/NotionImage.js +0 -91
- package/es/Notion/index.js +0 -9
- package/es/Table/Table.js +0 -141
- package/es/Table/index.js +0 -11
- package/es/TagSelector/Control.js +0 -28
- package/es/TagSelector/DropdownIndicator.js +0 -60
- package/es/TagSelector/Input.js +0 -22
- package/es/TagSelector/Menu.js +0 -27
- package/es/TagSelector/MenuList.js +0 -28
- package/es/TagSelector/Option.js +0 -60
- package/es/TagSelector/SelectContainer.js +0 -27
- package/es/TagSelector/ValueButton.js +0 -53
- package/es/TagSelector/ariaMessages.js +0 -94
- package/es/TagSelector/index.js +0 -10
- package/es/TagSelector/types.js +0 -1
- package/lib/DefinitionList/DefinitionDescription.d.ts +0 -10
- package/lib/DefinitionList/DefinitionDescription.js +0 -35
- package/lib/DefinitionList/DefinitionTerm.d.ts +0 -10
- package/lib/DefinitionList/DefinitionTerm.js +0 -35
- package/lib/DefinitionList/index.d.ts +0 -9
- package/lib/DefinitionList/index.js +0 -20
- package/lib/Embed/conceptComponents.d.ts +0 -40
- package/lib/Embed/conceptComponents.js +0 -163
- package/lib/ExpandableBox/ExpandableBox.d.ts +0 -15
- package/lib/ExpandableBox/ExpandableBox.js +0 -37
- package/lib/ExpandableBox/index.d.ts +0 -8
- package/lib/ExpandableBox/index.js +0 -18
- package/lib/Figure/Figure.d.ts +0 -16
- package/lib/Figure/Figure.js +0 -81
- package/lib/Figure/index.d.ts +0 -9
- package/lib/Figure/index.js +0 -13
- package/lib/FramedContent/FramedContent.d.ts +0 -12
- package/lib/FramedContent/FramedContent.js +0 -35
- package/lib/FramedContent/index.d.ts +0 -9
- package/lib/FramedContent/index.js +0 -16
- package/lib/Image/Image.d.ts +0 -38
- package/lib/Image/Image.js +0 -106
- package/lib/Image/ImageLink.d.ts +0 -18
- package/lib/Image/ImageLink.js +0 -44
- package/lib/Image/index.d.ts +0 -12
- package/lib/Image/index.js +0 -30
- package/lib/LetterFilter/LetterFilter.d.ts +0 -14
- package/lib/LetterFilter/LetterFilter.js +0 -61
- package/lib/LetterFilter/alphabet.d.ts +0 -8
- package/lib/LetterFilter/alphabet.js +0 -15
- package/lib/LetterFilter/index.d.ts +0 -9
- package/lib/LetterFilter/index.js +0 -16
- package/lib/Notion/Notion.d.ts +0 -20
- package/lib/Notion/Notion.js +0 -82
- package/lib/Notion/NotionImage.d.ts +0 -23
- package/lib/Notion/NotionImage.js +0 -101
- package/lib/Notion/index.d.ts +0 -8
- package/lib/Notion/index.js +0 -13
- package/lib/Table/Table.d.ts +0 -19
- package/lib/Table/Table.js +0 -145
- package/lib/Table/index.d.ts +0 -10
- package/lib/Table/index.js +0 -23
- package/lib/TagSelector/Control.d.ts +0 -11
- package/lib/TagSelector/Control.js +0 -35
- package/lib/TagSelector/DropdownIndicator.d.ts +0 -11
- package/lib/TagSelector/DropdownIndicator.js +0 -64
- package/lib/TagSelector/Input.d.ts +0 -12
- package/lib/TagSelector/Input.js +0 -29
- package/lib/TagSelector/Menu.d.ts +0 -12
- package/lib/TagSelector/Menu.js +0 -34
- package/lib/TagSelector/MenuList.d.ts +0 -16
- package/lib/TagSelector/MenuList.js +0 -35
- package/lib/TagSelector/Option.d.ts +0 -12
- package/lib/TagSelector/Option.js +0 -67
- package/lib/TagSelector/SelectContainer.d.ts +0 -11
- package/lib/TagSelector/SelectContainer.js +0 -34
- package/lib/TagSelector/ValueButton.d.ts +0 -20
- package/lib/TagSelector/ValueButton.js +0 -60
- package/lib/TagSelector/ariaMessages.d.ts +0 -16
- package/lib/TagSelector/ariaMessages.js +0 -101
- package/lib/TagSelector/index.d.ts +0 -11
- package/lib/TagSelector/index.js +0 -13
- package/lib/TagSelector/types.d.ts +0 -11
- package/lib/TagSelector/types.js +0 -5
- package/src/DefinitionList/DefinitionDescription.tsx +0 -26
- package/src/DefinitionList/DefinitionTerm.tsx +0 -26
- package/src/DefinitionList/index.tsx +0 -10
- package/src/Embed/conceptComponents.tsx +0 -293
- package/src/ExpandableBox/ExpandableBox.stories.tsx +0 -41
- package/src/ExpandableBox/ExpandableBox.tsx +0 -23
- package/src/ExpandableBox/index.ts +0 -9
- package/src/Figure/Figure.tsx +0 -167
- package/src/Figure/index.ts +0 -11
- package/src/FramedContent/FramedContent.stories.tsx +0 -152
- package/src/FramedContent/FramedContent.tsx +0 -26
- package/src/FramedContent/index.ts +0 -10
- package/src/Image/Image.stories.tsx +0 -61
- package/src/Image/Image.tsx +0 -147
- package/src/Image/ImageLink.tsx +0 -37
- package/src/Image/__tests__/Image-test.tsx +0 -66
- package/src/Image/__tests__/__snapshots__/Image-test.tsx.snap +0 -194
- package/src/Image/index.ts +0 -14
- package/src/LetterFilter/LetterFilter.stories.tsx +0 -29
- package/src/LetterFilter/LetterFilter.tsx +0 -78
- package/src/LetterFilter/alphabet.ts +0 -39
- package/src/LetterFilter/index.ts +0 -11
- package/src/Notion/Notion.tsx +0 -96
- package/src/Notion/NotionImage.tsx +0 -114
- package/src/Notion/index.ts +0 -9
- package/src/Table/Table.stories.tsx +0 -738
- package/src/Table/Table.tsx +0 -284
- package/src/Table/index.ts +0 -12
- package/src/TagSelector/Control.tsx +0 -34
- package/src/TagSelector/DropdownIndicator.tsx +0 -55
- package/src/TagSelector/Input.tsx +0 -31
- package/src/TagSelector/Menu.tsx +0 -38
- package/src/TagSelector/MenuList.tsx +0 -30
- package/src/TagSelector/Option.tsx +0 -58
- package/src/TagSelector/SelectContainer.tsx +0 -31
- package/src/TagSelector/ValueButton.tsx +0 -47
- package/src/TagSelector/ariaMessages.ts +0 -96
- package/src/TagSelector/index.ts +0 -14
- package/src/TagSelector/types.ts +0 -12
package/lib/styles.css
ADDED
|
@@ -0,0 +1,1197 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
@layer compositions {
|
|
3
|
+
.textStyle_body\.large {
|
|
4
|
+
font-family: var(--fonts-sans);
|
|
5
|
+
font-weight: var(--font-weights-normal);
|
|
6
|
+
font-size: var(--font-sizes-medium);
|
|
7
|
+
line-height: var(--line-heights-medium);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.textStyle_body\.large:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
11
|
+
font-size: calc(var(--font-sizes-medium) * 1.11);
|
|
12
|
+
line-height: calc(var(--line-heights-medium) * 1.11);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.textStyle_label\.medium {
|
|
16
|
+
font-family: var(--fonts-sans);
|
|
17
|
+
font-weight: var(--font-weights-normal);
|
|
18
|
+
font-size: var(--font-sizes-small);
|
|
19
|
+
line-height: var(--line-heights-small);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.textStyle_label\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
23
|
+
font-size: calc(var(--font-sizes-small) * 1.11);
|
|
24
|
+
line-height: calc(var(--line-heights-small) * 1.11);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.textStyle_label\.large {
|
|
28
|
+
font-family: var(--fonts-sans);
|
|
29
|
+
font-weight: var(--font-weights-normal);
|
|
30
|
+
font-size: var(--font-sizes-medium);
|
|
31
|
+
line-height: var(--line-heights-medium);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.textStyle_label\.large:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
35
|
+
font-size: calc(var(--font-sizes-medium) * 1.11);
|
|
36
|
+
line-height: calc(var(--line-heights-medium) * 1.11);
|
|
37
|
+
}
|
|
38
|
+
|
|
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
|
+
.\[\&_a\]\:textStyle_label\.xsmall a {
|
|
52
|
+
font-family: var(--fonts-sans);
|
|
53
|
+
font-weight: var(--font-weights-normal);
|
|
54
|
+
font-size: var(--font-sizes-xxsmall);
|
|
55
|
+
line-height: var(--line-heights-xxsmall);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.\[\&_a\]\:textStyle_label\.xsmall a:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
59
|
+
font-size: calc(var(--font-sizes-xxsmall) * 1.11);
|
|
60
|
+
line-height: calc(var(--line-heights-xxsmall) * 1.11);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.bd_1px_solid {
|
|
65
|
+
border: 1px solid;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.bdr_xsmall {
|
|
69
|
+
border-radius: var(--radii-xsmall);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.bx-sh_full {
|
|
73
|
+
box-shadow: var(--shadows-full);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.ov_hidden {
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.d_flex {
|
|
81
|
+
display: flex;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.flex_1_0_auto {
|
|
85
|
+
flex: 1 0 auto;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.w_surface\.4xsmall {
|
|
89
|
+
width: var(--sizes-surface-4xsmall);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.h_surface\.4xsmall {
|
|
93
|
+
height: var(--sizes-surface-4xsmall);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.gap_xsmall {
|
|
97
|
+
gap: var(--spacing-xsmall);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.p_xsmall {
|
|
101
|
+
padding: var(--spacing-xsmall);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.w_100\% {
|
|
105
|
+
width: 100%;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.bd-bs_1px_solid {
|
|
109
|
+
border-block-start: 1px solid;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.py_medium {
|
|
113
|
+
padding-block: var(--spacing-medium);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.px_xsmall {
|
|
117
|
+
padding-inline: var(--spacing-xsmall);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.max-w_surface\.xlarge {
|
|
121
|
+
max-width: var(--sizes-surface-xlarge);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.bdr-b_xsmall {
|
|
125
|
+
border-bottom-left-radius: var(--radii-xsmall);
|
|
126
|
+
border-bottom-right-radius: var(--radii-xsmall);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.bg_background\.default {
|
|
130
|
+
background: var(--colors-background-default);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.py_xsmall {
|
|
134
|
+
padding-block: var(--spacing-xsmall);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.px_medium {
|
|
138
|
+
padding-inline: var(--spacing-medium);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.grid-area_play {
|
|
142
|
+
grid-area: play;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.grid-area_forwards {
|
|
146
|
+
grid-area: forwards;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.grid-area_backwards {
|
|
150
|
+
grid-area: backwards;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.flex_1 {
|
|
154
|
+
flex: 1 1 0%;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.grid-area_track {
|
|
158
|
+
grid-area: track;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.grid-area_volume {
|
|
162
|
+
grid-area: volume;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.py_auto {
|
|
166
|
+
padding-block: auto;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.px_auto {
|
|
170
|
+
padding-inline: auto;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.max-w_xxlarge {
|
|
174
|
+
max-width: var(--sizes-xxlarge);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.max-h_xxlarge {
|
|
178
|
+
max-height: var(--sizes-xxlarge);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.min-w_xxlarge {
|
|
182
|
+
min-width: var(--sizes-xxlarge);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.min-h_xxlarge {
|
|
186
|
+
min-height: var(--sizes-xxlarge);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.grid-area_speed {
|
|
190
|
+
grid-area: speed;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.h_surface\.3xsmall {
|
|
194
|
+
height: var(--sizes-surface-3xsmall);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.sr_true {
|
|
198
|
+
position: absolute;
|
|
199
|
+
width: 1px;
|
|
200
|
+
height: 1px;
|
|
201
|
+
padding: 0;
|
|
202
|
+
margin: -1px;
|
|
203
|
+
overflow: hidden;
|
|
204
|
+
clip: rect(0, 0, 0, 0);
|
|
205
|
+
white-space: nowrap;
|
|
206
|
+
border-width: 0;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.c_text\.default {
|
|
210
|
+
color: var(--colors-text-default);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.gap_medium {
|
|
214
|
+
gap: var(--spacing-medium);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.h_100\% {
|
|
218
|
+
height: 100%;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.py_xlarge {
|
|
222
|
+
padding-block: var(--spacing-xlarge);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.px_xxlarge {
|
|
226
|
+
padding-inline: var(--spacing-xxlarge);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.tt_uppercase {
|
|
230
|
+
text-transform: uppercase;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.obj-f_cover {
|
|
234
|
+
object-fit: cover;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.bd_0 {
|
|
238
|
+
border: 0;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.d_inline-block {
|
|
242
|
+
display: inline-block;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.w_fit-content {
|
|
246
|
+
width: fit-content;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.pos_relative {
|
|
250
|
+
position: relative;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.max-w_8xl {
|
|
254
|
+
max-width: 8xl;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.max-w_surface\.xsmall {
|
|
258
|
+
max-width: var(--sizes-surface-xsmall);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.gap_xxsmall {
|
|
262
|
+
gap: var(--spacing-xxsmall);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.td_underline {
|
|
266
|
+
text-decoration: underline;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.h_215px {
|
|
270
|
+
height: 215px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.c_inherit {
|
|
274
|
+
color: inherit;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.bd-l_4px_solid {
|
|
278
|
+
border-left: 4px solid;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.bx-s_border-box {
|
|
282
|
+
box-sizing: border-box;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.d_block {
|
|
286
|
+
display: block;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.white-space_pre {
|
|
290
|
+
white-space: pre;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.d_inline {
|
|
294
|
+
display: inline;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.ms_xsmall {
|
|
298
|
+
margin-inline-start: var(--spacing-xsmall);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.h_auto {
|
|
302
|
+
height: auto;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.w_surface\.xlarge {
|
|
306
|
+
width: var(--sizes-surface-xlarge);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.c_text\.error {
|
|
310
|
+
color: var(--colors-text-error);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.h_surface\.xsmall {
|
|
314
|
+
height: var(--sizes-surface-xsmall);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.bd-b_0 {
|
|
318
|
+
border-bottom: 0;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.cursor_pointer {
|
|
322
|
+
cursor: pointer;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.pos_absolute {
|
|
326
|
+
position: absolute;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.z_base {
|
|
330
|
+
z-index: var(--z-index-base);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.bg_background\.default\/20 {
|
|
334
|
+
--mix-background: color-mix(in srgb, var(--colors-background-default) 20%, transparent);
|
|
335
|
+
background: var(--mix-background, var(--colors-background-default));
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.p_0 {
|
|
339
|
+
padding: 0;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.w_medium {
|
|
343
|
+
width: var(--sizes-medium);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.h_medium {
|
|
347
|
+
height: var(--sizes-medium);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.bd_2px_solid {
|
|
351
|
+
border: 2px solid;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.c_background\.default {
|
|
355
|
+
color: var(--colors-background-default);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.bdr_large {
|
|
359
|
+
border-radius: var(--radii-large);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.ov_visible {
|
|
363
|
+
overflow: visible;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.bd-b_1px_solid {
|
|
367
|
+
border-bottom: 1px solid;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.py_4xsmall {
|
|
371
|
+
padding-block: var(--spacing-4xsmall);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.px_4xsmall {
|
|
375
|
+
padding-inline: var(--spacing-4xsmall);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.ta_center {
|
|
379
|
+
text-align: center;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.my_xxlarge {
|
|
383
|
+
margin-block: var(--spacing-xxlarge);
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.p_medium {
|
|
387
|
+
padding: var(--spacing-medium);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.max-h_surface\.xxsmall {
|
|
391
|
+
max-height: var(--sizes-surface-xxsmall);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.gap_small {
|
|
395
|
+
gap: var(--spacing-small);
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.px_0 {
|
|
399
|
+
padding-inline: 0;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.mbs_3xsmall {
|
|
403
|
+
margin-block-start: var(--spacing-3xsmall);
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.py_small {
|
|
407
|
+
padding-block: var(--spacing-small);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.bd-t_1px_solid {
|
|
411
|
+
border-top: 1px solid;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.bg_surface\.default {
|
|
415
|
+
background: var(--colors-surface-default);
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.c_icon\.strong {
|
|
419
|
+
color: var(--colors-icon-strong);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.li-s_none {
|
|
423
|
+
list-style: none;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.d_grid {
|
|
427
|
+
display: grid;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.mbs_xsmall {
|
|
431
|
+
margin-block-start: var(--spacing-xsmall);
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.asp_1\/1 {
|
|
435
|
+
aspect-ratio: 1/1;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.bd-c_stroke\.default {
|
|
439
|
+
border-color: var(--colors-stroke-default);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.ai_center {
|
|
443
|
+
align-items: center;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.ai_flex-start {
|
|
447
|
+
align-items: flex-start;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.flex-d_column {
|
|
451
|
+
flex-direction: column;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.as_flex-start {
|
|
455
|
+
align-self: flex-start;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.jc_center {
|
|
459
|
+
justify-content: center;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.bg-c_background\.default {
|
|
463
|
+
background-color: var(--colors-background-default);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.bd-c_stroke\.subtle {
|
|
467
|
+
border-color: var(--colors-stroke-subtle);
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.trs-dur_fast {
|
|
471
|
+
--transition-duration: var(--durations-fast);
|
|
472
|
+
transition-duration: var(--durations-fast);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.trs-prop_background-color\,_border-color\,_max-width {
|
|
476
|
+
--transition-prop: background-color, border-color, max-width;
|
|
477
|
+
transition-property: background-color, border-color, max-width;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.trs-tmf_default {
|
|
481
|
+
--transition-easing: var(--easings-default);
|
|
482
|
+
transition-timing-function: var(--easings-default);
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.as_center {
|
|
486
|
+
align-self: center;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.bd-l-c_stroke\.default {
|
|
490
|
+
border-left-color: var(--colors-stroke-default);
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.ov-x_auto {
|
|
494
|
+
overflow-x: auto;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.ff_code {
|
|
498
|
+
font-family: var(--fonts-code);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.fw_bold {
|
|
502
|
+
font-weight: var(--font-weights-bold);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.bg-c_surface\.disabled {
|
|
506
|
+
background-color: var(--colors-surface-disabled);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.bd-c_surface\.brand\.1\.strong {
|
|
510
|
+
border-color: var(--colors-surface-brand-1-strong);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.bdr-bl_0 {
|
|
514
|
+
border-bottom-left-radius: 0;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.bdr-br_0 {
|
|
518
|
+
border-bottom-right-radius: 0;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.bottom_0 {
|
|
522
|
+
bottom: 0;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.right_0 {
|
|
526
|
+
right: 0;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.trs-prop_transform\,_background-color\,_color {
|
|
530
|
+
--transition-prop: transform, background-color, color;
|
|
531
|
+
transition-property: transform, background-color, color;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.trs-dur_normal {
|
|
535
|
+
--transition-duration: var(--durations-normal);
|
|
536
|
+
transition-duration: var(--durations-normal);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.trs-tmf_ease-out {
|
|
540
|
+
--transition-easing: ease-out;
|
|
541
|
+
transition-timing-function: ease-out;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.top_xsmall {
|
|
545
|
+
top: var(--spacing-xsmall);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.right_xsmall {
|
|
549
|
+
right: var(--spacing-xsmall);
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.bd-c_background\.default {
|
|
553
|
+
border-color: var(--colors-background-default);
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.bg-c_surface\.action {
|
|
557
|
+
background-color: var(--colors-surface-action);
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.border-style_dashed {
|
|
561
|
+
border-style: dashed;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.bd-c_stroke\.hover {
|
|
565
|
+
border-color: var(--colors-stroke-hover);
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.mb_medium {
|
|
569
|
+
margin-bottom: var(--spacing-medium);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.mt_3xsmall {
|
|
573
|
+
margin-top: var(--spacing-3xsmall);
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.ml_3xsmall {
|
|
577
|
+
margin-left: var(--spacing-3xsmall);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.trs-prop_max-height {
|
|
581
|
+
--transition-prop: max-height;
|
|
582
|
+
transition-property: max-height;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.trs-dur_slow {
|
|
586
|
+
--transition-duration: var(--durations-slow);
|
|
587
|
+
transition-duration: var(--durations-slow);
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.trs-tmf_ease-in-out {
|
|
591
|
+
--transition-easing: ease-in-out;
|
|
592
|
+
transition-timing-function: ease-in-out;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.bottom_-medium {
|
|
596
|
+
bottom: calc(var(--spacing-medium) * -1);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.jc_space-between {
|
|
600
|
+
justify-content: space-between;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.font-style_italic {
|
|
604
|
+
font-style: italic;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.grid-tc_repeat\(2\,_1fr\) {
|
|
608
|
+
grid-template-columns: repeat(2, 1fr);
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.\[\&\[data-align\=\"center\"\]\]\:ta_center[data-align="center"] {
|
|
612
|
+
text-align: center;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.\[\&\:has\(span\[dir\=\"rtl\"\]\)\]\:direction_rtl:has(span[dir="rtl"]) {
|
|
616
|
+
direction: rtl;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.\[\&_img\]\:w_100\% img {
|
|
620
|
+
width: 100%;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.\[\&_img\]\:h_100\% img {
|
|
624
|
+
height: 100%;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.\[\&_img\]\:obj-f_cover img {
|
|
628
|
+
object-fit: cover;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.\[\&_span_\>_\*\]\:white-space_pre-wrap span > * {
|
|
632
|
+
white-space: pre-wrap;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.\[\&_span\]\:flex_1 span {
|
|
636
|
+
flex: 1 1 0%;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.\[\&_\.linenumber\]\:d_inline-block .linenumber {
|
|
640
|
+
display: inline-block;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.\[\&_\.linenumber\]\:py_0 .linenumber {
|
|
644
|
+
padding-block: 0;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.\[\&_\.linenumber\]\:px_small .linenumber {
|
|
648
|
+
padding-inline: var(--spacing-small);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.\[\&_\.linenumber\]\:bd-r_1px_solid .linenumber {
|
|
652
|
+
border-right: 1px solid;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.\[\&_\.linenumber\]\:w_xxlarge .linenumber {
|
|
656
|
+
width: var(--sizes-xxlarge);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.\[\&_\.linenumber\]\:ta_right .linenumber {
|
|
660
|
+
text-align: right;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.\[\&_\.linenumber\]\:me_xsmall .linenumber {
|
|
664
|
+
margin-inline-end: var(--spacing-xsmall);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.\[\&_\.linenumber\[data-first\]\]\:pbs_xsmall .linenumber[data-first] {
|
|
668
|
+
padding-block-start: var(--spacing-xsmall);
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.\[\&_\.linenumber\[data-last\]\]\:pbe_xsmall .linenumber[data-last] {
|
|
672
|
+
padding-block-end: var(--spacing-xsmall);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.comment,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.block-comment,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.prolog,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.doctype,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.cdata {
|
|
676
|
+
color: #7d8b99;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.\[\&_\.token\.punctuation\]\:c_\#5f6364 .token.punctuation {
|
|
680
|
+
color: #5f6364;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.property,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.tag,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.boolean,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.number,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.function-name,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.constant,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.symbol,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.deleted {
|
|
684
|
+
color: #c92c2c;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.selector,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.attr-name,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.string,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.char,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.function,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.builtin,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.inserted {
|
|
688
|
+
color: #2f9c0a;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.operator,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.entity,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.url,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.variable {
|
|
692
|
+
color: #a67f59;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.operator,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.entity,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.url,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.variable {
|
|
696
|
+
background: rgba(255, 255, 255, 0.5);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.atrule,.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.attr-value,.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.keyword,.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.class-name {
|
|
700
|
+
color: #1990b8;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.\[\&_\.token\.regex\,_\.token\.important\]\:c_\#e90 .token.regex,.\[\&_\.token\.regex\,_\.token\.important\]\:c_\#e90 .token.important {
|
|
704
|
+
color: #e90;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:c_\#a67f59 .language-css .token.string,.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:c_\#a67f59 .style .token.string {
|
|
708
|
+
color: #a67f59;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .language-css .token.string,.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .style .token.string {
|
|
712
|
+
background: rgba(255, 255, 255, 0.5);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.\[\&_\.token\.entity\]\:cursor_help .token.entity {
|
|
716
|
+
cursor: help;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.\[\&_\.token\.namespace\]\:op_0\.7 .token.namespace {
|
|
720
|
+
opacity: 0.7;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.\[\&_p\]\:d_inline p {
|
|
724
|
+
display: inline;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.\[\&_\>_\*\:not\(\:where\(\:first-child\)\)\]\:mbs_xsmall > *:not(:where(:first-child)) {
|
|
728
|
+
margin-block-start: var(--spacing-xsmall);
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.\[\&_li\]\:d_block li {
|
|
732
|
+
display: block;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.\[\&_svg\]\:fill_text\.subtle svg {
|
|
736
|
+
fill: var(--colors-text-subtle);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.\[\&_svg\]\:h_90\% svg {
|
|
740
|
+
height: 90%;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.\[\&_svg\]\:w_90\% svg {
|
|
744
|
+
width: 90%;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.\[\&\[data-embed-type\=\'audio\'\]\]\:h_surface\.3xsmall[data-embed-type='audio'] {
|
|
748
|
+
height: var(--sizes-surface-3xsmall);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.\[\&_\>_\*\:not\(\:first-child\)\]\:mbs_3xsmall > *:not(:first-child) {
|
|
752
|
+
margin-block-start: var(--spacing-3xsmall);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.\[\&_iframe\]\:h_auto iframe {
|
|
756
|
+
height: auto;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.\[\&_iframe\]\:w_100\% iframe {
|
|
760
|
+
width: 100%;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.\[\&_a\]\:ms_1 a {
|
|
764
|
+
margin-inline-start: var(--spacing-1);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.\[\&_svg\]\:fill_primary svg {
|
|
768
|
+
fill: var(--colors-primary);
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.\[\&_a\]\:c_text\.strong a {
|
|
772
|
+
color: var(--colors-text-strong);
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.open\:max-h_500vh:is([open], [data-open], [data-state="open"]) {
|
|
776
|
+
max-height: 500vh;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.\[\&_\:first-child\]\:mbs_0 :first-child {
|
|
780
|
+
margin-block-start: 0;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.after\:ta_center::after {
|
|
784
|
+
text-align: center;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.after\:pos_absolute::after {
|
|
788
|
+
position: absolute;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.after\:inset_0::after {
|
|
792
|
+
inset: 0;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.after\:grad-from_surface\.default\/00::after {
|
|
796
|
+
--mix---gradient-from: color-mix(in srgb, var(--colors-surface-default) 00%, transparent);
|
|
797
|
+
--gradient-from: var(--mix---gradient-from, var(--colors-surface-default));
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.after\:grad-to_surface\.default::after {
|
|
801
|
+
--gradient-to: var(--colors-surface-default);
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.after\:bg-grad_to-b::after {
|
|
805
|
+
--gradient-stops: var(--gradient-via-stops, var(--gradient-from) var(--gradient-from-position), var(--gradient-to) var(--gradient-to-position));
|
|
806
|
+
--gradient: var(--gradient-via-stops, var(--gradient-stops));
|
|
807
|
+
background-image: linear-gradient(to bottom, var(--gradient));
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.after\:op_1::after {
|
|
811
|
+
opacity: 1;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.after\:z_base::after {
|
|
815
|
+
z-index: var(--z-index-base);
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.open\:pbe_xsmall:is([open], [data-open], [data-state="open"]) {
|
|
819
|
+
padding-block-end: var(--spacing-xsmall);
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.first\:bg_surface\.brand\.1\.subtle:first-child {
|
|
823
|
+
background: var(--colors-surface-brand-1-subtle);
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.\[\&_h3\]\:td_underline h3 {
|
|
827
|
+
text-decoration: underline;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.before\:pos_absolute::before {
|
|
831
|
+
position: absolute;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
.before\:inset_0::before {
|
|
835
|
+
inset: 0;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.before\:z_0::before {
|
|
839
|
+
z-index: 0;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.\[\&_\.linenumber\]\:bd-c_stroke\.subtle .linenumber {
|
|
843
|
+
border-color: var(--colors-stroke-subtle);
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.\[\&_\.token\.important\]\:fw_normal .token.important {
|
|
847
|
+
font-weight: var(--font-weights-normal);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.\[\&_\.token\.bold\]\:fw_bold .token.bold {
|
|
851
|
+
font-weight: var(--font-weights-bold);
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.\[\&_\.token\.italic\]\:font-style_italic .token.italic {
|
|
855
|
+
font-style: italic;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.\[\&_svg\]\:trs-prop_transform svg {
|
|
859
|
+
--transition-prop: transform;
|
|
860
|
+
transition-property: transform;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.\[\&_svg\]\:trs-dur_normal svg {
|
|
864
|
+
--transition-duration: var(--durations-normal);
|
|
865
|
+
transition-duration: var(--durations-normal);
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.\[\&_svg\]\:trs-tmf_ease-out svg {
|
|
869
|
+
--transition-easing: ease-out;
|
|
870
|
+
transition-timing-function: ease-out;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.\[\&_h1\]\:mt_0 h1 {
|
|
874
|
+
margin-top: 0;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.after\:content_\"\"::after {
|
|
878
|
+
content: "";
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.after\:trs-prop_opacity::after {
|
|
882
|
+
--transition-prop: opacity;
|
|
883
|
+
transition-property: opacity;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.after\:trs-dur_slow::after {
|
|
887
|
+
--transition-duration: var(--durations-slow);
|
|
888
|
+
transition-duration: var(--durations-slow);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.after\:trs-tmf_ease-out::after {
|
|
892
|
+
--transition-easing: ease-out;
|
|
893
|
+
transition-timing-function: ease-out;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.\[\&_svg\]\:trs-tmf_ease-in-out svg {
|
|
897
|
+
--transition-easing: ease-in-out;
|
|
898
|
+
transition-timing-function: ease-in-out;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.\[\&_svg\]\:trs-dur_fast svg {
|
|
902
|
+
--transition-duration: var(--durations-fast);
|
|
903
|
+
transition-duration: var(--durations-fast);
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.first\:bd-c_stroke\.default:first-child {
|
|
907
|
+
border-color: var(--colors-stroke-default);
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.\[\&_\[data-forward\]\]\:trs-prop_width\,_height [data-forward] {
|
|
911
|
+
--transition-prop: width, height;
|
|
912
|
+
transition-property: width, height;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.\[\&_\[data-forward\]\]\:trs-tmf_ease-in-out [data-forward] {
|
|
916
|
+
--transition-easing: ease-in-out;
|
|
917
|
+
transition-timing-function: ease-in-out;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.\[\&_\[data-forward\]\]\:trs-dur_fast [data-forward] {
|
|
921
|
+
--transition-duration: var(--durations-fast);
|
|
922
|
+
transition-duration: var(--durations-fast);
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.before\:content_\"\"::before {
|
|
926
|
+
content: "";
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.focusVisible\:ring_none:is(:focus-visible, [data-focus-visible]) {
|
|
930
|
+
outline: 2px solid transparent;
|
|
931
|
+
outline-offset: 2px;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.focusVisible\:bdr_0:is(:focus-visible, [data-focus-visible]) {
|
|
935
|
+
border-radius: 0;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.\[\&\:hover\,_\&\:focus-visible\]\:bd-c_stroke\.hover:hover,.\[\&\:hover\,_\&\:focus-visible\]\:bd-c_stroke\.hover:focus-visible {
|
|
939
|
+
border-color: var(--colors-stroke-hover);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.\[\&\:hover\,_\&\:focus-visible\]\:bg-c_surface\.actionSubtle\.hover:hover,.\[\&\:hover\,_\&\:focus-visible\]\:bg-c_surface\.actionSubtle\.hover:focus-visible {
|
|
943
|
+
background-color: var(--colors-surface-action-subtle-hover);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.hover\:td_none:is(:hover, [data-hover]) {
|
|
947
|
+
text-decoration: none;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.hover\:bg_surface\.actionSubtle\.hover:is(:hover, [data-hover]) {
|
|
951
|
+
background: var(--colors-surface-action-subtle-hover);
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.hover\:bd-c_text\.link:is(:hover, [data-hover]) {
|
|
955
|
+
border-color: var(--colors-text-link);
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.active\:bg_surface\.actionSubtle\.active:is(:active, [data-active]) {
|
|
959
|
+
background: var(--colors-surface-action-subtle-active);
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.active\:bd-c_text\.link:is(:active, [data-active]) {
|
|
963
|
+
border-color: var(--colors-text-link);
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.\[\&_button\[data-expanded\=\'true\'\]\]\:\[\&_svg\]\:trf_rotate\(-45deg\) button[data-expanded='true'] svg {
|
|
967
|
+
transform: rotate(-45deg);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.open\:after\:op_0:is([open], [data-open], [data-state="open"])::after {
|
|
971
|
+
opacity: 0;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.open\:after\:z_hide:is([open], [data-open], [data-state="open"])::after {
|
|
975
|
+
z-index: var(--z-index-hide);
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
.open\:\[\&_svg\]\:trf_rotate\(180deg\):is([open], [data-open], [data-state="open"]) svg {
|
|
979
|
+
transform: rotate(180deg);
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.first\:\[\&_p\]\:fw_bold:first-child p {
|
|
983
|
+
font-weight: var(--font-weights-bold);
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h1,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h2,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h3,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h4,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h5,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h6,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h1,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h2,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h3,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h4,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h5,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h6 {
|
|
987
|
+
text-decoration: underline;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.focusVisible\:after\:pos_absolute:is(:focus-visible, [data-focus-visible])::after {
|
|
991
|
+
position: absolute;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.focusVisible\:after\:inset_0:is(:focus-visible, [data-focus-visible])::after {
|
|
995
|
+
inset: 0;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.focusVisible\:after\:ring_3px:is(:focus-visible, [data-focus-visible])::after {
|
|
999
|
+
outline: 3px;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.focusVisible\:after\:bdr_xsmall:is(:focus-visible, [data-focus-visible])::after {
|
|
1003
|
+
border-radius: var(--radii-xsmall);
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.focusVisible\:after\:ring-o_3px:is(:focus-visible, [data-focus-visible])::after {
|
|
1007
|
+
outline-offset: 3px;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.focusVisible\:after\:content_\"\":is(:focus-visible, [data-focus-visible])::after {
|
|
1011
|
+
content: "";
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.focusVisible\:after\:ring-c_stroke\.default:is(:focus-visible, [data-focus-visible])::after {
|
|
1015
|
+
outline-color: var(--colors-stroke-default);
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.focusVisible\:after\:outline-style_solid:is(:focus-visible, [data-focus-visible])::after {
|
|
1019
|
+
outline-style: solid;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.hover\:\[\&_\[data-byline-button\]\]\:bg_background\.default:is(:hover, [data-hover]) [data-byline-button] {
|
|
1023
|
+
background: var(--colors-background-default);
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.hover\:\[\&_button\[data-expanded\]\]\:trf_scale\(1\.2\):is(:hover, [data-hover]) button[data-expanded] {
|
|
1027
|
+
transform: scale(1.2);
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.hover\:\[\&_h3\]\:td_none:is(:hover, [data-hover]) h3 {
|
|
1031
|
+
text-decoration: none;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.hover\:\[\&_\[data-forward\]\]\:w_large:is(:hover, [data-hover]) [data-forward] {
|
|
1035
|
+
width: var(--sizes-large);
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.hover\:\[\&_\[data-forward\]\]\:h_large:is(:hover, [data-hover]) [data-forward] {
|
|
1039
|
+
height: var(--sizes-large);
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
@media screen and (min-width: 29.75rem) {
|
|
1043
|
+
.mobileWide\:max-w_surface\.medium {
|
|
1044
|
+
max-width: var(--sizes-surface-medium);
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
@media screen and (min-width: 37.5625rem) {
|
|
1049
|
+
.tablet\:px_medium {
|
|
1050
|
+
padding-inline: var(--spacing-medium);
|
|
1051
|
+
}
|
|
1052
|
+
.tablet\:mt_xxlarge {
|
|
1053
|
+
margin-top: var(--spacing-xxlarge);
|
|
1054
|
+
}
|
|
1055
|
+
.tablet\:mb_xxlarge {
|
|
1056
|
+
margin-bottom: var(--spacing-xxlarge);
|
|
1057
|
+
}
|
|
1058
|
+
.\[\&\[data-has-image\=\'true\'\]\]\:tablet\:py_xsmall[data-has-image='true'] {
|
|
1059
|
+
padding-block: var(--spacing-xsmall);
|
|
1060
|
+
}
|
|
1061
|
+
.\[\&\[data-has-image\=\'true\'\]\]\:tablet\:px_medium[data-has-image='true'] {
|
|
1062
|
+
padding-inline: var(--spacing-medium);
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
@media screen and (min-width: 48rem) {
|
|
1067
|
+
.tabletWide\:w_100\% {
|
|
1068
|
+
width: 100%;
|
|
1069
|
+
}
|
|
1070
|
+
.tabletWide\:max-w_350px {
|
|
1071
|
+
max-width: 350px;
|
|
1072
|
+
}
|
|
1073
|
+
.tabletWide\:max-w_532px {
|
|
1074
|
+
max-width: 532px;
|
|
1075
|
+
}
|
|
1076
|
+
.tabletWide\:max-w_1100px {
|
|
1077
|
+
max-width: 1100px;
|
|
1078
|
+
}
|
|
1079
|
+
.tabletWide\:flex-d_row {
|
|
1080
|
+
flex-direction: row;
|
|
1081
|
+
}
|
|
1082
|
+
.tabletWide\:jc_space-between {
|
|
1083
|
+
justify-content: space-between;
|
|
1084
|
+
}
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
@media screen and (min-width: 61.3125rem) {
|
|
1088
|
+
.desktop\:w_260px {
|
|
1089
|
+
width: 260px;
|
|
1090
|
+
}
|
|
1091
|
+
.desktop\:h_260px {
|
|
1092
|
+
height: 260px;
|
|
1093
|
+
}
|
|
1094
|
+
.desktop\:h_340px {
|
|
1095
|
+
height: 340px;
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
@media screen and (max-width: 47.9975rem) {
|
|
1100
|
+
.tabletWideDown\:d_block {
|
|
1101
|
+
display: block;
|
|
1102
|
+
}
|
|
1103
|
+
.tabletWideDown\:max-h_surface\.small {
|
|
1104
|
+
max-height: var(--sizes-surface-small);
|
|
1105
|
+
}
|
|
1106
|
+
.tabletWideDown\:max-w_100\% {
|
|
1107
|
+
max-width: 100%;
|
|
1108
|
+
}
|
|
1109
|
+
.tabletWideDown\:w_100\% {
|
|
1110
|
+
width: 100%;
|
|
1111
|
+
}
|
|
1112
|
+
.tabletWideDown\:h_auto {
|
|
1113
|
+
height: auto;
|
|
1114
|
+
}
|
|
1115
|
+
.tabletWideDown\:d_grid {
|
|
1116
|
+
display: grid;
|
|
1117
|
+
}
|
|
1118
|
+
.tabletWideDown\:py_xsmall {
|
|
1119
|
+
padding-block: var(--spacing-xsmall);
|
|
1120
|
+
}
|
|
1121
|
+
.tabletWideDown\:px_xsmall {
|
|
1122
|
+
padding-inline: var(--spacing-xsmall);
|
|
1123
|
+
}
|
|
1124
|
+
.tabletWideDown\:p_xsmall {
|
|
1125
|
+
padding: var(--spacing-xsmall);
|
|
1126
|
+
}
|
|
1127
|
+
.tabletWideDown\:grid-tc_1fr_repeat\(5\,_auto\)_1fr {
|
|
1128
|
+
grid-template-columns: 1fr repeat(5, auto) 1fr;
|
|
1129
|
+
}
|
|
1130
|
+
.tabletWideDown\:grid-template-areas_\"track_track_track_track_track_track_track\"_\"\._speed_backwards_play_forwards_volume_\.\" {
|
|
1131
|
+
grid-template-areas: "track track track track track track track" ". speed backwards play forwards volume .";
|
|
1132
|
+
}
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
@media screen and (max-width: 37.56rem) {
|
|
1136
|
+
.tabletDown\:gap_0 {
|
|
1137
|
+
gap: 0;
|
|
1138
|
+
}
|
|
1139
|
+
.tabletDown\:p_0 {
|
|
1140
|
+
padding: 0;
|
|
1141
|
+
}
|
|
1142
|
+
.tabletDown\:p_xsmall {
|
|
1143
|
+
padding: var(--spacing-xsmall);
|
|
1144
|
+
}
|
|
1145
|
+
.tabletDown\:w_100\% {
|
|
1146
|
+
width: 100%;
|
|
1147
|
+
}
|
|
1148
|
+
.tabletDown\:bdr_0 {
|
|
1149
|
+
border-radius: 0;
|
|
1150
|
+
}
|
|
1151
|
+
.tabletDown\:grid-tc_1fr {
|
|
1152
|
+
grid-template-columns: 1fr;
|
|
1153
|
+
}
|
|
1154
|
+
.tabletDown\:flex-d_column {
|
|
1155
|
+
flex-direction: column;
|
|
1156
|
+
}
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
@media screen and (max-width: 29.7475rem) {
|
|
1160
|
+
.mobileWideDown\:cg_3xsmall {
|
|
1161
|
+
column-gap: var(--spacing-3xsmall);
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
@media screen and (max-width: 19.9975rem) {
|
|
1166
|
+
.mobileDown\:px_xsmall {
|
|
1167
|
+
padding-inline: var(--spacing-xsmall);
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
@media print {
|
|
1172
|
+
.print\:ov_visible {
|
|
1173
|
+
overflow: visible;
|
|
1174
|
+
}
|
|
1175
|
+
.print\:d_none {
|
|
1176
|
+
display: none;
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
@media print {
|
|
1181
|
+
.closed\:print\:ov_visible:is([closed], [data-closed], [data-state="closed"]) {
|
|
1182
|
+
overflow: visible;
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
@media print {
|
|
1187
|
+
.closed\:print\:max-h_500vh:is([closed], [data-closed], [data-state="closed"]) {
|
|
1188
|
+
max-height: 500vh;
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
@media print {
|
|
1193
|
+
.print\:after\:d_none::after {
|
|
1194
|
+
display: none;
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
}
|