// Auto-generated by: pnpm test:stylesheets:update import { join } from 'node:path'; import { compileLessWithTokens } from '../../../scripts/testStylesheets/compileLessWithTokens'; import { DEFAULT_LESS_PRELUDES, DEFAULT_TOKEN_CSS_FILES } from '../../../scripts/testStylesheets/config'; describe('components/Typography/Typography.less stylesheet snapshot', () => { it('compiled CSS with tokens inlined', async () => { const css = await compileLessWithTokens(join(__dirname, 'Typography.less'), DEFAULT_TOKEN_CSS_FILES, { lessPreludes: DEFAULT_LESS_PRELUDES, }); expect(css).toMatchTokensInlineSnapshot(` .typography::after { content: none; } .typography__headline1 { margin: 0 0 0.834em; font-family: 'Inter Display', 'Arial', sans-serif; font-size: 26px; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 32px; color: oklch(0.7247 0.1478 233.0429); letter-spacing: 0px; } .typography__headline1:nth-child(n + 2) { margin-top: 0.834em; } .typography__headline1 strong { font-weight: 400; color: oklch(0.7249 0.1526 128.9646); } @media only screen and (min-width: 576px) { .typography__headline1 { font-family: 'Inter Display', 'Arial', sans-serif; font-size: 36px; font-weight: 400; line-height: 46px; letter-spacing: 0px; } } .typography__headline2 { margin: 0 0 0.5em; font-family: 'Inter Display', 'Arial', sans-serif; font-size: 22px; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 28px; color: oklch(0.7247 0.1478 233.0429); letter-spacing: 0px; } .typography__headline2::after { visibility: hidden; } .typography__headline2:nth-child(n + 2) { margin-top: 1.5em; } .typography__headline2 strong { font-weight: 400; color: oklch(0.7249 0.1526 128.9646); } .typography__headline3 { margin: 0 0 0.5em; font-family: 'Inter Display', 'Arial', sans-serif; font-size: 18px; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 24px; color: oklch(0 0 none); letter-spacing: 0px; } .typography__headline3:nth-child(n + 2) { margin-top: 1.7em; } .typography__headline3 strong { font-weight: 400; color: oklch(0.7249 0.1526 128.9646); } .typography__headline4 { margin: 0 0 0.5em; font-family: 'Inter Display', 'Arial', sans-serif; font-size: 16px; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 24px; color: oklch(0 0 none); letter-spacing: 0px; } .typography__headline4:nth-child(n + 2) { margin-top: 0.834em; } .typography__headline4 strong { font-weight: 400; color: oklch(0.7249 0.1526 128.9646); } .typography__headline5 { margin: 0 0 0.5em; font-family: 'Inter Display', 'Arial', sans-serif; font-size: 12px; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 14px; color: oklch(0 0 none); letter-spacing: 0px; } .typography__headline5:nth-child(n + 2) { margin-top: 1em; } .typography__headline5 strong { font-weight: 400; color: oklch(0.7249 0.1526 128.9646); } .typography__bodyCopyS { max-width: 826px; margin: 0 0 1.5em; font-family: 'Inter', 'Arial', sans-serif; font-size: 10px; font-weight: 400; line-height: 16px; color: oklch(0 0 none); letter-spacing: 0.06px; } .typography__bodyCopyS strong, .typography__bodyCopySB { max-width: 826px; font-family: 'Inter', 'Arial', sans-serif; font-size: 10px; font-weight: 700; line-height: 16px; color: oklch(0 0 none); letter-spacing: 0.06px; } .typography__bodyCopyM { max-width: 826px; margin: 0 0 1.5em; font-family: 'Inter', 'Arial', sans-serif; font-size: 12px; font-weight: 400; line-height: 18px; color: oklch(0 0 none); letter-spacing: 0.1px; } .typography__bodyCopyM strong, .typography__bodyCopyMB { max-width: 826px; font-family: 'Inter', 'Arial', sans-serif; font-size: 12px; font-weight: 700; line-height: 18px; color: oklch(0 0 none); letter-spacing: 0.1px; } .typography__bodyCopyL { max-width: 826px; margin: 0 0 1.5em; font-family: 'Inter', 'Arial', sans-serif; font-size: 14px; font-weight: 400; line-height: 22px; color: oklch(0 0 none); letter-spacing: 0.16px; } .typography__bodyCopyL strong, .typography__bodyCopyLB { max-width: 826px; font-family: 'Inter', 'Arial', sans-serif; font-size: 14px; font-weight: 700; line-height: 22px; color: oklch(0 0 none); letter-spacing: 0.16px; } .typography--left { text-align: left; } .typography--center { text-align: center; } .typography--right { text-align: right; } .typography--primary { color: oklch(0 0 none); } .typography--secondary { color: oklch(0.5999 0 none); } .typography--tertiary { color: oklch(0.7252 0 none); } .typography--inverted { color: oklch(1 0 none); } .typography--truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .typography--divider { overflow: hidden; } .typography--divider::after { content: ''; display: inline-block; width: 100%; margin-right: -100%; margin-left: 15px; vertical-align: middle; visibility: inherit; border-bottom: 1px solid oklch(0.8761 0 none); } `); }); });