@codecademy/styleguide 79.2.2-alpha.e2a546.0 → 79.2.2

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.
@@ -60,9 +60,6 @@ const config: StorybookConfig = {
60
60
  '@codecademy/variance$': resolve(__dirname, '../../variance/src'),
61
61
  },
62
62
  };
63
- config.infrastructureLogging = {
64
- level: 'warn'
65
- };
66
63
  return config;
67
64
  },
68
65
  };
package/CHANGELOG.md CHANGED
@@ -3,9 +3,11 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ### [79.2.2-alpha.e2a546.0](https://github.com/Codecademy/gamut/compare/@codecademy/styleguide@79.2.1...@codecademy/styleguide@79.2.2-alpha.e2a546.0) (2026-03-19)
6
+ ### [79.2.2](https://github.com/Codecademy/gamut/compare/@codecademy/styleguide@79.2.1...@codecademy/styleguide@79.2.2) (2026-03-19)
7
7
 
8
- **Note:** Version bump only for package @codecademy/styleguide
8
+ ### Bug Fixes
9
+
10
+ - **DataList:** Padding on first column and alignment for headers ([1b55acd](https://github.com/Codecademy/gamut/commit/1b55acdaba8c33be5e3cc7a19b0c9a3b50987ab5))
9
11
 
10
12
  ### [79.2.1](https://github.com/Codecademy/gamut/compare/@codecademy/styleguide@79.2.0...@codecademy/styleguide@79.2.1) (2026-03-17)
11
13
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@codecademy/styleguide",
3
3
  "description": "Styleguide & Component library for codecademy.com",
4
- "version": "79.2.2-alpha.e2a546.0",
4
+ "version": "79.2.2",
5
5
  "author": "Codecademy Engineering",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
10
10
  "repository": "git@github.com:Codecademy/gamut.git",
11
- "gitHead": "5a374a5bab79e638c17778cff571047dc042e3ce"
11
+ "gitHead": "c486633c23501b9b843e23c8aef1bd2c8f238ba1"
12
12
  }
@@ -99,7 +99,7 @@ export const Table: Story = {
99
99
  export const Plain: Story = {
100
100
  args: { spacing: 'condensed', variant: 'plain' },
101
101
  render: (args) => (
102
- <Box bg="red" width={1}>
102
+ <Box width={1}>
103
103
  <ListExample {...args} />
104
104
  </Box>
105
105
  ),