@codecademy/styleguide 79.2.0-alpha.62997b.0 → 79.2.0-alpha.7e0fb1.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/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
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.0-alpha.62997b.0](https://github.com/Codecademy/gamut/compare/@codecademy/styleguide@79.1.0...@codecademy/styleguide@79.2.0-alpha.62997b.0) (2026-02-09)
6
+ ## [79.2.0-alpha.7e0fb1.0](https://github.com/Codecademy/gamut/compare/@codecademy/styleguide@79.1.0...@codecademy/styleguide@79.2.0-alpha.7e0fb1.0) (2026-02-10)
7
7
 
8
8
  ### Features
9
9
 
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.0-alpha.62997b.0",
4
+ "version": "79.2.0-alpha.7e0fb1.0",
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": "778d3c639d274daba25e60ba5ef4f1cb38ffde42"
11
+ "gitHead": "89242ea90a1649e0b6768dc84ff38313f62f5c1d"
12
12
  }
@@ -155,7 +155,7 @@ Ensures Gamut import statements use proper module paths. This rule enforces thre
155
155
  import { FillButton } from '@codecademy/gamut';
156
156
 
157
157
  // Don't append /src
158
- import { FillButton } from '@codecademy/gamut';
158
+ import { FillButton } from '@codecademy/gamut/src';
159
159
 
160
160
  // Don't append /dist
161
161
  import { theme } from '@codecademy/gamut-styles/dist';
@@ -1,12 +1,12 @@
1
1
  import { Box, Column, LayoutGrid, Text } from '@codecademy/gamut';
2
- // eslint-disable-next-line gamut/import-paths
2
+ import type { Meta, StoryObj } from '@storybook/react';
3
+ import { Fragment } from 'react';
4
+
3
5
  import {
4
6
  typographyElementVariants,
5
7
  typographyStyleVariants,
6
8
  typographyUtilities,
7
- } from '@codecademy/gamut/src/Typography/variants';
8
- import type { Meta, StoryObj } from '@storybook/react';
9
- import { Fragment } from 'react';
9
+ } from '../../../../../gamut/src/Typography/variants';
10
10
 
11
11
  const meta: Meta<typeof Text> = {
12
12
  component: Text,
@@ -1,8 +1,8 @@
1
1
  import { Column, LayoutGrid, Text } from '@codecademy/gamut';
2
- // eslint-disable-next-line gamut/import-paths
3
- import { typographyElementVariants } from '@codecademy/gamut/src/Typography/variants';
4
2
  import { Fragment } from 'react';
5
3
 
4
+ import { typographyElementVariants } from '../../../../../gamut/src/Typography/variants';
5
+
6
6
  export const Elements: React.FC = () => (
7
7
  <LayoutGrid gap={32} my={48}>
8
8
  {Object.keys(typographyElementVariants).map((tag) => (