Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Source to 8.0.0 #12474

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Update Source to 8.0.0 #12474

wants to merge 3 commits into from

Conversation

jamesmockett
Copy link
Contributor

@jamesmockett jamesmockett commented Sep 30, 2024

What does this change?

  • Updates @guardian/source and @guardian/source-development-kitchen to 8.0.0.
  • Updates @guardian/braze-components to 21.0.0
  • Updates @guardian/commercial to 22.1.0

These releases remove the deprecated typography API and disallow direct use of Emotion's css prop. A previous PR (#12465) removed remaining uses of the typography API and replaced with typography presets, and replaced incorrect usage of the css prop with cssOverrides.

Source now consistently includes the unit for rem values so these have been removed where previously added. This PR also contains some small styling tweaks to compensate for changes to layout and markup in Source components.

Note

This is branched from #12465 which is currently set as the base branch so the diff only shows the changes made in this PR. Once merged the base branch can be changed back to main.

Source 6.1.0–8.0.0 release notes

8.0.0

Major Changes

  • 33608e2: Disallows direct use of Emotion's css prop on Source components.

    If you need to override the internal styling of Source components, use cssOverrides instead.

7.0.1

Patch Changes

  • 80eea1d: Small refactors to allow Eslint updates

7.0.0

Major Changes

  • 238dfd3: Removes deprecated typography API.

    In @guardian/[email protected] (2024-04-07), we added new web typography presets to standardise on the typographic language used by Design, and deprecated the old typography API.

    This release removes that old API, in order to simplify the ongoing maintenance of the library.

    The following exports have been removed:

    • titlepiece
    • headline
    • body
    • textSans
    • titlepieceSizes
    • headlineSizes
    • bodySizes
    • textSansSizes
    • remTitlepieceSizes
    • remHeadlineSizes
    • remBodySizes
    • remTextSansSizes
    • fonts
    • fontWeights
    • lineHeights
    • bodyObjectStyles
    • headlineObjectStyles
    • textSansObjectStyles
    • titlepieceObjectStyles

    along with the following type exports:

    • ScaleUnit
    • Category
    • LineHeight
    • FontWeight
    • FontStyle
    • FontWeightDefinition
    • Option
    • TypographySizes
    • TypographyStyles
    • TitlepieceSizes
    • HeadlineSizes
    • BodySizes
    • TextSansSizes
    • Fs
    • FontScaleFunction
    • FontScaleFunctionStr
    • FontScaleArgs

    If you cannot map existing uses of the old API to the new presets, please check which preset you should use with a designer.

  • 447e6b6: Applies consistent spacing around checkboxes and radio buttons by removing conditional styles and using padding to ensure minimum height of 44px.

    The external padding is now consistent regardless of the presence of a label and / or supporting text, and removes any inconsistency when these elements are stacked vertically.

    Checkboxes and radio buttons are also now aligned with the first line of text when labels wrap on to multiple lines.

  • 7805d16: Brings remSize, remIconSize, remHeight and remWidth into line with remSpace, by changing their values from a number (of rems) to a string that ends with rem units.

    pxToRem also now returns a string with rem units, rather than a number of rems.

    The sizes haven't changed, only the way they are exported.

    Before

    const style = `
    	top: ${pxToRem(10)}rem;
    	bottom: ${remHeight.ctaSmall}rem;
    `;

    After

    const style = `
    	top: ${pxToRem(10)};
    	bottom: ${remHeight.ctaSmall};
    `;

    If you have been performing calculations with the old number values in JS, you can use the CSS calc function instead:

    Before

    const style = `
    	bottom: -${remHeight.ctaSmall / 2}rem;
    `;

    After

    const style = `
    	bottom: calc(-${remHeight.ctaSmall} / 2);
    `;

Patch Changes

  • 69ecc3f: Moves design tokens into @guardian/source itself.

    Allows us to calculate @guardian/source/foundations values during build, rather than at the point of consumption, which relieves user's devices of this overhead and means the design tokens JSON will no longer be included in consumer's bundles.

6.1.0

Minor Changes

  • 11c62af: Adds headlineBold15, headlineLight15, headlineLightItalic15, headlineMedium15 and headlineMediumItalic15 to the typography presets
Source Development Kitchen 6.0.0–8.0.0 release notes

8.0.0

Patch Changes

7.1.0

Minor Changes

  • bcd0e25: Add a new ticker component

7.0.1

Patch Changes

  • 80eea1d: Small refactors to allow Eslint updates

7.0.0

Major Changes

Updated peer dependency to @guardian/[email protected]

6.0.0

Major Changes

  • d4e48f9: Refactor DottedLines to render pattern with CSS rather than SVG

Why?

DCR has fallen several major versions behind. This brings us up-to-date and allows use of features and bug fixes added in later releases.

Copy link

Hello 👋! When you're ready to run Chromatic, please apply the run_chromatic label to this PR.

You will need to reapply the label each time you want to run Chromatic.

Click here to see the Chromatic project.

@jamesmockett jamesmockett added this to the Health milestone Sep 30, 2024
@jamesmockett jamesmockett linked an issue Sep 30, 2024 that may be closed by this pull request
@@ -105,7 +105,7 @@ const MetaGridByline = ({
padding-bottom: 0px;
}
address > div > span > svg:first-of-type {
address > div > span > div:first-of-type {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The DottedLines component in Source Development Kitchen has been updated to be rendered with CSS rather than as an SVG, therefore there's no longer an svg element to target here. This selector feels very fragile and the spacing would be better applied elsewhere, but I've left as is for now and simply updated the element it's targeting.

Copy link

github-actions bot commented Sep 30, 2024

Size Change: -6.11 kB (-0.66%)

Total Size: 917 kB

Filename Size Change
dotcom-rendering/dist/1073.client.web.********************.js 0 B -4.88 kB (removed) 🏆
dotcom-rendering/dist/1190.client.web.********************.js 0 B -3.65 kB (removed) 🏆
dotcom-rendering/dist/1279.client.web.********************.js 0 B -4.56 kB (removed) 🏆
dotcom-rendering/dist/1425.client.web.********************.js 0 B -3.45 kB (removed) 🏆
dotcom-rendering/dist/1482.client.web.********************.js 0 B -4.03 kB (removed) 🏆
dotcom-rendering/dist/17.client.web.********************.js 0 B -2.67 kB (removed) 🏆
dotcom-rendering/dist/181.client.web.********************.js 0 B -4.53 kB (removed) 🏆
dotcom-rendering/dist/2337.client.web.********************.js 0 B -3.05 kB (removed) 🏆
dotcom-rendering/dist/2398.client.web.********************.js 0 B -2.67 kB (removed) 🏆
dotcom-rendering/dist/2544.client.web.********************.js 0 B -3.41 kB (removed) 🏆
dotcom-rendering/dist/2803.client.web.********************.js 0 B -4.68 kB (removed) 🏆
dotcom-rendering/dist/305.client.web.********************.js 0 B -3.06 kB (removed) 🏆
dotcom-rendering/dist/3054.client.web.********************.js 0 B -4.65 kB (removed) 🏆
dotcom-rendering/dist/3875.client.web.********************.js 0 B -4.06 kB (removed) 🏆
dotcom-rendering/dist/4533.client.web.********************.js 0 B -2.93 kB (removed) 🏆
dotcom-rendering/dist/4569.client.web.********************.js 0 B -3.73 kB (removed) 🏆
dotcom-rendering/dist/5100.client.web.********************.js 0 B -3.34 kB (removed) 🏆
dotcom-rendering/dist/5192.client.web.********************.js 0 B -4.91 kB (removed) 🏆
dotcom-rendering/dist/5238.client.web.********************.js 0 B -3.83 kB (removed) 🏆
dotcom-rendering/dist/5337.client.web.********************.js 0 B -7.63 kB (removed) 🏆
dotcom-rendering/dist/5445.client.web.********************.js 0 B -3.42 kB (removed) 🏆
dotcom-rendering/dist/5624.client.web.********************.js 0 B -2.97 kB (removed) 🏆
dotcom-rendering/dist/5648.client.web.********************.js 0 B -3.02 kB (removed) 🏆
dotcom-rendering/dist/6059.client.web.********************.js 0 B -8.85 kB (removed) 🏆
dotcom-rendering/dist/6102.client.web.********************.js 0 B -3.79 kB (removed) 🏆
dotcom-rendering/dist/6154.client.web.********************.js 0 B -5.8 kB (removed) 🏆
dotcom-rendering/dist/6446.client.web.********************.js 0 B -4.56 kB (removed) 🏆
dotcom-rendering/dist/7291.client.web.********************.js 0 B -3.34 kB (removed) 🏆
dotcom-rendering/dist/7346.client.web.********************.js 0 B -2.52 kB (removed) 🏆
dotcom-rendering/dist/7517.client.web.********************.js 0 B -6.7 kB (removed) 🏆
dotcom-rendering/dist/783.client.web.********************.js 0 B -2.42 kB (removed) 🏆
dotcom-rendering/dist/8053.client.web.********************.js 0 B -6.4 kB (removed) 🏆
dotcom-rendering/dist/8095.client.web.********************.js 0 B -4.05 kB (removed) 🏆
dotcom-rendering/dist/8167.client.web.********************.js 0 B -5.56 kB (removed) 🏆
dotcom-rendering/dist/8702.client.web.********************.js 0 B -3.38 kB (removed) 🏆
dotcom-rendering/dist/8962.client.web.********************.js 0 B -3.57 kB (removed) 🏆
dotcom-rendering/dist/guardian-braze-components-banner.client.web.********************.js 15.8 kB -1.37 kB (-7.97%)
dotcom-rendering/dist/guardian-braze-components-end-of-article.client.web.********************.js 10.1 kB -1.48 kB (-12.84%) 👏
dotcom-rendering/dist/index.client.web.********************.js 44.8 kB -891 B (-1.95%)
dotcom-rendering/dist/1002.client.web.********************.js 3.65 kB +3.65 kB (new file) 🆕
dotcom-rendering/dist/1020.client.web.********************.js 7.64 kB +7.64 kB (new file) 🆕
dotcom-rendering/dist/1528.client.web.********************.js 3.04 kB +3.04 kB (new file) 🆕
dotcom-rendering/dist/1573.client.web.********************.js 6.39 kB +6.39 kB (new file) 🆕
dotcom-rendering/dist/1884.client.web.********************.js 3.4 kB +3.4 kB (new file) 🆕
dotcom-rendering/dist/2113.client.web.********************.js 5.79 kB +5.79 kB (new file) 🆕
dotcom-rendering/dist/224.client.web.********************.js 2.66 kB +2.66 kB (new file) 🆕
dotcom-rendering/dist/2320.client.web.********************.js 4.53 kB +4.53 kB (new file) 🆕
dotcom-rendering/dist/2390.client.web.********************.js 4.06 kB +4.06 kB (new file) 🆕
dotcom-rendering/dist/240.client.web.********************.js 8.16 kB +8.16 kB (new file) 🆕
dotcom-rendering/dist/2511.client.web.********************.js 3.72 kB +3.72 kB (new file) 🆕
dotcom-rendering/dist/2773.client.web.********************.js 4.02 kB +4.02 kB (new file) 🆕
dotcom-rendering/dist/2943.client.web.********************.js 4.21 kB +4.21 kB (new file) 🆕
dotcom-rendering/dist/3210.client.web.********************.js 4.66 kB +4.66 kB (new file) 🆕
dotcom-rendering/dist/3550.client.web.********************.js 4.87 kB +4.87 kB (new file) 🆕
dotcom-rendering/dist/4367.client.web.********************.js 3.83 kB +3.83 kB (new file) 🆕
dotcom-rendering/dist/4915.client.web.********************.js 6.69 kB +6.69 kB (new file) 🆕
dotcom-rendering/dist/5066.client.web.********************.js 2.96 kB +2.96 kB (new file) 🆕
dotcom-rendering/dist/5292.client.web.********************.js 2.51 kB +2.51 kB (new file) 🆕
dotcom-rendering/dist/5371.client.web.********************.js 3.34 kB +3.34 kB (new file) 🆕
dotcom-rendering/dist/547.client.web.********************.js 3 kB +3 kB (new file) 🆕
dotcom-rendering/dist/5761.client.web.********************.js 4.65 kB +4.65 kB (new file) 🆕
dotcom-rendering/dist/5982.client.web.********************.js 3.78 kB +3.78 kB (new file) 🆕
dotcom-rendering/dist/6409.client.web.********************.js 4.44 kB +4.44 kB (new file) 🆕
dotcom-rendering/dist/661.client.web.********************.js 3.21 kB +3.21 kB (new file) 🆕
dotcom-rendering/dist/7055.client.web.********************.js 2.92 kB +2.92 kB (new file) 🆕
dotcom-rendering/dist/7242.client.web.********************.js 4.55 kB +4.55 kB (new file) 🆕
dotcom-rendering/dist/7264.client.web.********************.js 4.05 kB +4.05 kB (new file) 🆕
dotcom-rendering/dist/7267.client.web.********************.js 3.37 kB +3.37 kB (new file) 🆕
dotcom-rendering/dist/7497.client.web.********************.js 2.41 kB +2.41 kB (new file) 🆕
dotcom-rendering/dist/7843.client.web.********************.js 2.66 kB +2.66 kB (new file) 🆕
dotcom-rendering/dist/7962.client.web.********************.js 3.58 kB +3.58 kB (new file) 🆕
dotcom-rendering/dist/8990.client.web.********************.js 3.41 kB +3.41 kB (new file) 🆕
dotcom-rendering/dist/9216.client.web.********************.js 3.45 kB +3.45 kB (new file) 🆕
dotcom-rendering/dist/9434.client.web.********************.js 4.89 kB +4.89 kB (new file) 🆕
dotcom-rendering/dist/9488.client.web.********************.js 3.04 kB +3.04 kB (new file) 🆕
ℹ️ View Unchanged
Filename Size Change
dotcom-rendering/dist/1000.client.web.********************.js 999 B 0 B
dotcom-rendering/dist/1026.client.web.********************.js 784 B 0 B
dotcom-rendering/dist/1090.client.web.********************.js 752 B 0 B
dotcom-rendering/dist/1156.client.web.********************.js 3.88 kB +22 B (+0.57%)
dotcom-rendering/dist/1391.client.web.********************.js 725 B 0 B
dotcom-rendering/dist/1417.client.web.********************.js 2.28 kB +1 B (+0.04%)
dotcom-rendering/dist/1476.client.web.********************.js 784 B 0 B
dotcom-rendering/dist/1667.client.web.********************.js 918 B 0 B
dotcom-rendering/dist/1888.client.web.********************.js 2.92 kB +2 B (+0.07%)
dotcom-rendering/dist/1904.client.web.********************.js 12.6 kB +14 B (+0.11%)
dotcom-rendering/dist/1940.client.web.********************.js 507 B 0 B
dotcom-rendering/dist/2123.client.web.********************.js 619 B 0 B
dotcom-rendering/dist/2182.client.web.********************.js 529 B 0 B
dotcom-rendering/dist/2249.client.web.********************.js 4.91 kB -4 B (-0.08%)
dotcom-rendering/dist/2310.client.web.********************.js 880 B 0 B
dotcom-rendering/dist/2471.client.web.********************.js 14.5 kB +3 B (+0.02%)
dotcom-rendering/dist/267.client.web.********************.js 917 B 0 B
dotcom-rendering/dist/281.client.web.********************.js 642 B 0 B
dotcom-rendering/dist/3006.client.web.********************.js 4.49 kB -2 B (-0.04%)
dotcom-rendering/dist/3109.client.web.********************.js 803 B 0 B
dotcom-rendering/dist/3270.client.web.********************.js 961 B 0 B
dotcom-rendering/dist/3304.client.web.********************.js 853 B 0 B
dotcom-rendering/dist/3769.client.web.********************.js 999 B 0 B
dotcom-rendering/dist/408.client.web.********************.js 10 kB +3 B (+0.03%)
dotcom-rendering/dist/4122.client.web.********************.js 1.84 kB +3 B (+0.16%)
dotcom-rendering/dist/4149.client.web.********************.js 3.77 kB 0 B
dotcom-rendering/dist/4282.client.web.********************.js 685 B 0 B
dotcom-rendering/dist/4501.client.web.********************.js 4.29 kB 0 B
dotcom-rendering/dist/4628.client.web.********************.js 654 B 0 B
dotcom-rendering/dist/4749.client.web.********************.js 20.2 kB 0 B
dotcom-rendering/dist/4866.client.web.********************.js 6.3 kB +8 B (+0.13%)
dotcom-rendering/dist/4875.client.web.********************.js 157 B 0 B
dotcom-rendering/dist/4941.client.web.********************.js 890 B 0 B
dotcom-rendering/dist/5087.client.web.********************.js 439 B 0 B
dotcom-rendering/dist/5165.client.web.********************.js 5.69 kB +5 B (+0.09%)
dotcom-rendering/dist/5340.client.web.********************.js 3.32 kB +7 B (+0.21%)
dotcom-rendering/dist/5658.client.web.********************.js 750 B 0 B
dotcom-rendering/dist/5757.client.web.********************.js 931 B 0 B
dotcom-rendering/dist/5880.client.web.********************.js 828 B 0 B
dotcom-rendering/dist/6044.client.web.********************.js 726 B 0 B
dotcom-rendering/dist/6071.client.web.********************.js 577 B 0 B
dotcom-rendering/dist/6135.client.web.********************.js 779 B 0 B
dotcom-rendering/dist/614.client.web.********************.js 17.4 kB +13 B (+0.07%)
dotcom-rendering/dist/6332.client.web.********************.js 3.42 kB +1 B (+0.03%)
dotcom-rendering/dist/6505.client.web.********************.js 1 kB 0 B
dotcom-rendering/dist/6598.client.web.********************.js 780 B 0 B
dotcom-rendering/dist/6638.client.web.********************.js 907 B 0 B
dotcom-rendering/dist/678.client.web.********************.js 804 B 0 B
dotcom-rendering/dist/682.client.web.********************.js 3 kB +14 B (+0.47%)
dotcom-rendering/dist/6915.client.web.********************.js 22.7 kB +6 B (+0.03%)
dotcom-rendering/dist/7072.client.web.********************.js 3.83 kB +5 B (+0.13%)
dotcom-rendering/dist/7116.client.web.********************.js 23 kB 0 B
dotcom-rendering/dist/7341.client.web.********************.js 4 kB +5 B (+0.13%)
dotcom-rendering/dist/7407.client.web.********************.js 3.7 kB 0 B
dotcom-rendering/dist/7691.client.web.********************.js 853 B 0 B
dotcom-rendering/dist/7780.client.web.********************.js 2.08 kB +4 B (+0.19%)
dotcom-rendering/dist/8235.client.web.********************.js 9.96 kB +13 B (+0.13%)
dotcom-rendering/dist/83.client.web.********************.js 750 B 0 B
dotcom-rendering/dist/840.client.web.********************.js 3.2 kB +2 B (+0.06%)
dotcom-rendering/dist/8504.client.web.********************.js 827 B 0 B
dotcom-rendering/dist/8536.client.web.********************.js 595 B 0 B
dotcom-rendering/dist/8626.client.web.********************.js 890 B 0 B
dotcom-rendering/dist/8697.client.web.********************.js 956 B 0 B
dotcom-rendering/dist/8746.client.web.********************.js 3.02 kB +8 B (+0.27%)
dotcom-rendering/dist/8822.client.web.********************.js 526 B 0 B
dotcom-rendering/dist/8833.client.web.********************.js 829 B 0 B
dotcom-rendering/dist/9132.client.web.********************.js 4.2 kB +5 B (+0.12%)
dotcom-rendering/dist/9184.client.web.********************.js 493 B 0 B
dotcom-rendering/dist/9493.client.web.********************.js 785 B 0 B
dotcom-rendering/dist/9557.client.web.********************.js 921 B 0 B
dotcom-rendering/dist/9721.client.web.********************.js 717 B 0 B
dotcom-rendering/dist/9736.client.web.********************.js 44.2 kB 0 B
dotcom-rendering/dist/9835.client.web.********************.js 647 B 0 B
dotcom-rendering/dist/9899.client.web.********************.js 669 B 0 B
dotcom-rendering/dist/Accessibility-importable.client.web.********************.js 5.96 kB +3 B (+0.05%)
dotcom-rendering/dist/AdBlockAsk-importable.client.web.********************.js 2.85 kB +8 B (+0.28%)
dotcom-rendering/dist/AdPortals-importable.client.web.********************.js 3.94 kB +2 B (+0.05%)
dotcom-rendering/dist/AlreadyVisited-importable.client.web.********************.js 424 B 0 B
dotcom-rendering/dist/AppsEpic-importable.client.web.********************.js 3.57 kB +6 B (+0.17%)
dotcom-rendering/dist/AppsFooter-importable.client.web.********************.js 3.67 kB +1 B (+0.03%)
dotcom-rendering/dist/AppsLightboxImage-importable.client.web.********************.js 3.04 kB -28 B (-0.91%)
dotcom-rendering/dist/AppsLightboxImageStore-importable.client.web.********************.js 2.5 kB 0 B
dotcom-rendering/dist/AudioAtomWrapper-importable.client.web.********************.js 3.58 kB +5 B (+0.14%)
dotcom-rendering/dist/AustralianTerritorySwitcher-importable.client.web.********************.js 4.88 kB -8 B (-0.16%)
dotcom-rendering/dist/Branding-importable.client.web.********************.js 3.04 kB -6 B (-0.2%)
dotcom-rendering/dist/braze-web-sdk-core.client.web.********************.js 37.2 kB 0 B
dotcom-rendering/dist/BrazeMessaging-importable.client.web.********************.js 1.96 kB -4 B (-0.2%)
dotcom-rendering/dist/CalloutBlockComponent-importable.client.web.********************.js 6.71 kB +1 B (+0.01%)
dotcom-rendering/dist/CalloutEmbedBlockComponent-importable.client.web.********************.js 7.45 kB +8 B (+0.11%)
dotcom-rendering/dist/CardCommentCount-importable.client.web.********************.js 3.47 kB -8 B (-0.23%)
dotcom-rendering/dist/Carousel-importable.client.web.********************.js 6.03 kB +7 B (+0.12%)
dotcom-rendering/dist/CarouselForNewsletters-importable.client.web.********************.js 4.5 kB +3 B (+0.07%)
dotcom-rendering/dist/ChartAtom-importable.client.web.********************.js 539 B -1 B (-0.19%)
dotcom-rendering/dist/CommentCount-importable.client.web.********************.js 3.29 kB -11 B (-0.33%)
dotcom-rendering/dist/DiscussionApps-importable.client.web.********************.js 1.91 kB 0 B
dotcom-rendering/dist/DiscussionMeta-importable.client.web.********************.js 1.22 kB 0 B
dotcom-rendering/dist/DiscussionWeb-importable.client.web.********************.js 1.74 kB +2 B (+0.12%)
dotcom-rendering/dist/DocumentBlockComponent-importable.client.web.********************.js 3.64 kB +6 B (+0.17%)
dotcom-rendering/dist/Dropdown-importable.client.web.********************.js 1.72 kB -15 B (-0.87%)
dotcom-rendering/dist/EditionSwitcherBanner-importable.client.web.********************.js 5.95 kB -14 B (-0.23%)
dotcom-rendering/dist/EmbedBlockComponent-importable.client.web.********************.js 4.26 kB -2 B (-0.05%)
dotcom-rendering/dist/EnhancePinnedPost-importable.client.web.********************.js 2.01 kB 0 B
dotcom-rendering/dist/FetchOnwardsData-importable.client.web.********************.js 2.44 kB -3 B (-0.12%)
dotcom-rendering/dist/FilterKeyEventsToggle-importable.client.web.********************.js 968 B 0 B
dotcom-rendering/dist/FocusStyles-importable.client.web.********************.js 619 B +1 B (+0.16%)
dotcom-rendering/dist/FollowWrapper-importable.client.web.********************.js 763 B 0 B
dotcom-rendering/dist/FooterLabel-importable.client.web.********************.js 347 B 0 B
dotcom-rendering/dist/FooterReaderRevenueLinks-importable.client.web.********************.js 3.74 kB -3 B (-0.08%)
dotcom-rendering/dist/frameworks.client.web.********************.js 20.9 kB 0 B
dotcom-rendering/dist/FrontSubNav-importable.client.web.********************.js 5.45 kB +2 B (+0.04%)
dotcom-rendering/dist/GetCricketScoreboard-importable.client.web.********************.js 3.82 kB +3 B (+0.08%)
dotcom-rendering/dist/GetMatchNav-importable.client.web.********************.js 10.5 kB +22 B (+0.21%)
dotcom-rendering/dist/GetMatchStats-importable.client.web.********************.js 7.89 kB -2 B (-0.03%)
dotcom-rendering/dist/GetMatchTabs-importable.client.web.********************.js 2.71 kB +3 B (+0.11%)
dotcom-rendering/dist/GuideAtomWrapper-importable.client.web.********************.js 783 B 0 B
dotcom-rendering/dist/HighlightsContainer-importable.client.web.********************.js 5 kB 0 B
dotcom-rendering/dist/InstagramBlockComponent-importable.client.web.********************.js 3.29 kB +3 B (+0.09%)
dotcom-rendering/dist/InteractiveAtomMessenger-importable.client.web.********************.js 849 B 0 B
dotcom-rendering/dist/InteractiveBlockComponent-importable.client.web.********************.js 6.33 kB +1 B (+0.02%)
dotcom-rendering/dist/InteractiveContentsBlockComponent-importable.client.web.********************.js 4.71 kB -2 B (-0.04%)
dotcom-rendering/dist/KeyEventsCarousel-importable.client.web.********************.js 4.77 kB +7 B (+0.15%)
dotcom-rendering/dist/KnowledgeQuizAtom-importable.client.web.********************.js 3.61 kB +47 B (+1.32%)
dotcom-rendering/dist/LatestLinks-importable.client.web.********************.js 4.18 kB +1 B (+0.02%)
dotcom-rendering/dist/LightboxHash-importable.client.web.********************.js 436 B 0 B
dotcom-rendering/dist/LightboxLayout-importable.client.web.********************.js 6.49 kB -5 B (-0.08%)
dotcom-rendering/dist/LiveBlogEpic-importable.client.web.********************.js 3.78 kB 0 B
dotcom-rendering/dist/LiveblogNotifications-importable.client.web.********************.js 3.15 kB -3 B (-0.1%)
dotcom-rendering/dist/Liveness-importable.client.web.********************.js 5.5 kB -13 B (-0.24%)
dotcom-rendering/dist/ManyNewsletterSignUp-importable.client.web.********************.js 7.64 kB +6 B (+0.08%)
dotcom-rendering/dist/MapEmbedBlockComponent-importable.client.web.********************.js 5.45 kB +1 B (+0.02%)
dotcom-rendering/dist/Metrics-importable.client.web.********************.js 2.69 kB +2 B (+0.07%)
dotcom-rendering/dist/MostViewedFooter-importable.client.web.********************.js 5.71 kB -9 B (-0.16%)
dotcom-rendering/dist/MostViewedFooterData-importable.client.web.********************.js 8.34 kB -11 B (-0.13%)
dotcom-rendering/dist/MostViewedRightWithAd-importable.client.web.********************.js 4.72 kB +4 B (+0.08%)
dotcom-rendering/dist/OnwardsUpper-importable.client.web.********************.js 5.83 kB -2 B (-0.03%)
dotcom-rendering/dist/PersonalityQuizAtom-importable.client.web.********************.js 3.76 kB +49 B (+1.32%)
dotcom-rendering/dist/ProfileAtom-importable.client.web.********************.js 543 B 0 B
dotcom-rendering/dist/ProfileAtomWrapper-importable.client.web.********************.js 803 B 0 B
dotcom-rendering/dist/PulsingDot-importable.client.web.********************.js 750 B 0 B
dotcom-rendering/dist/QandaAtom-importable.client.web.********************.js 542 B 0 B
dotcom-rendering/dist/ReaderRevenueDev-importable.client.web.********************.js 469 B 0 B
dotcom-rendering/dist/readerRevenueDevUtils.client.web.********************.js 1.97 kB 0 B
dotcom-rendering/dist/RelativeTime-importable.client.web.********************.js 2.53 kB 0 B
dotcom-rendering/dist/RichLinkComponent-importable.client.web.********************.js 7.23 kB -7 B (-0.1%)
dotcom-rendering/dist/SecureSignup-importable.client.web.********************.js 5.1 kB 0 B
dotcom-rendering/dist/SendTargetingParams-importable.client.web.********************.js 2.19 kB 0 B
dotcom-rendering/dist/sentry.client.web.********************.js 792 B 0 B
dotcom-rendering/dist/SetABTests-importable.client.web.********************.js 3.69 kB 0 B
dotcom-rendering/dist/SetAdTargeting-importable.client.web.********************.js 484 B 0 B
dotcom-rendering/dist/ShareButton-importable.client.web.********************.js 1.54 kB +1 B (+0.06%)
dotcom-rendering/dist/shimport.client.web.********************.js 2.8 kB 0 B
dotcom-rendering/dist/ShowHideContainers-importable.client.web.********************.js 644 B 0 B
dotcom-rendering/dist/ShowMore-importable.client.web.********************.js 1.75 kB -2 B (-0.11%)
dotcom-rendering/dist/SignInGateMain.client.web.********************.js 4.53 kB -6 B (-0.13%)
dotcom-rendering/dist/SignInGateMainCheckoutComplete.client.web.********************.js 5.63 kB -2 B (-0.04%)
dotcom-rendering/dist/SignInGateSelector-importable.client.web.********************.js 3.16 kB 0 B
dotcom-rendering/dist/SlotBodyEnd-importable.client.web.********************.js 3.49 kB +6 B (+0.17%)
dotcom-rendering/dist/SpotifyBlockComponent-importable.client.web.********************.js 5.31 kB -1 B (-0.02%)
dotcom-rendering/dist/StickyBottomBanner-importable.client.web.********************.js 4.2 kB +1 B (+0.02%)
dotcom-rendering/dist/StickyLiveblogAskWrapper-importable.client.web.********************.js 7.69 kB -2 B (-0.03%)
dotcom-rendering/dist/SubNav-importable.client.web.********************.js 3.4 kB -8 B (-0.23%)
dotcom-rendering/dist/TableOfContents-importable.client.web.********************.js 3.2 kB +2 B (+0.06%)
dotcom-rendering/dist/TimelineAtom-importable.client.web.********************.js 1.23 kB +3 B (+0.24%)
dotcom-rendering/dist/Titlepiece-importable.client.web.********************.js 14.7 kB +19 B (+0.13%)
dotcom-rendering/dist/TopBar-importable.client.web.********************.js 8.26 kB +2 B (+0.02%)
dotcom-rendering/dist/TopBarSupport-importable.client.web.********************.js 2.75 kB 0 B
dotcom-rendering/dist/TweetBlockComponent-importable.client.web.********************.js 1.13 kB +1 B (+0.09%)
dotcom-rendering/dist/UnsafeEmbedBlockComponent-importable.client.web.********************.js 3.3 kB +1 B (+0.03%)
dotcom-rendering/dist/VideoFacebookBlockComponent-importable.client.web.********************.js 5.46 kB -2 B (-0.04%)
dotcom-rendering/dist/VineBlockComponent-importable.client.web.********************.js 3.13 kB +8 B (+0.26%)
dotcom-rendering/dist/WeatherWrapper-importable.client.web.********************.js 7.06 kB -5 B (-0.07%)
dotcom-rendering/dist/YoutubeBlockComponent-importable.client.web.********************.js 6.36 kB -13 B (-0.2%)

compressed-size-action

Comment on lines +17 to +21
> fieldset > div > div {
padding: 0;
align-items: center;
margin-bottom: ${space[2]}px;
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The answer buttons would be better refactored to avoid needing to override so many radio button styles, but that feels like a separate task and out of scope for this update.

@jamesmockett jamesmockett added the run_chromatic Runs chromatic when label is applied label Sep 30, 2024
@github-actions github-actions bot removed the run_chromatic Runs chromatic when label is applied label Sep 30, 2024
@jamesmockett jamesmockett force-pushed the jm/typography-and-css-override-updates branch from 9972637 to 7912051 Compare September 30, 2024 13:34
Base automatically changed from jm/typography-and-css-override-updates to main September 30, 2024 14:08
@jamesmockett jamesmockett added the run_chromatic Runs chromatic when label is applied label Sep 30, 2024
@github-actions github-actions bot removed the run_chromatic Runs chromatic when label is applied label Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Review
Development

Successfully merging this pull request may close these issues.

Update to Source v8
1 participant