[hard-reset] teak.3 + design tokens#15
Merged
jignaciopm merged 2 commits intojipm/release-teak.3from Dec 23, 2025
Merged
Conversation
BREAKING CHANGE: Pre-design-tokens theming is no longer supported. Co-authored-by: Diana Olarte <diana.olarte@edunext.co>
- Add filter functionality to course optimizer broken links to check different results - modify design, make use of logo with better tooltip - change message texts in different area of the page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request primarily updates the codebase to align with the latest Paragon design system variables and dependencies. The most significant changes include migrating SCSS variable usage to CSS custom properties, updating various dependencies, and making minor configuration improvements.
Design System and SCSS Variable Migration:
Replaced SCSS variables (e.g.,
$black,$gray-700,$font-weight-bold) with Paragon CSS custom properties (e.g.,var(--pgn-color-black),var(--pgn-color-gray-700),var(--pgn-typography-font-weight-bold)) throughout SCSS files, ensuring consistency with the latest Paragon theming and improved maintainability. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23]Updated import paths for Paragon utilities in SCSS, switching to the new recommended import (
@openedx/paragon/styles/scss/core/utilities-only).Dependency and Package Updates:
Upgraded several frontend dependencies to their latest versions, including
@openedx/paragon,@openedx/frontend-build,@edx/frontend-platform,@edx/frontend-component-footer,react-select,uuid, andyup, to ensure compatibility and receive the latest features and bug fixes. [1] [2] [3] [4]Updated the
i18n_extractnpm script to include thepluginsdirectory and made minor adjustments to the dependencies list inpackage.json(e.g., reordering, version bumps, and removals). [1] [2] [3]Configuration Improvements:
PARAGON_THEME_URLSenvironment variable in.env,.env.development, and.env.testfiles, providing a fallback for local style files and supporting Paragon theming. [1] [2] [3]Supporting information
Link to other information about the change, such as GitHub issues, or Discourse discussions.
Be sure to check they are publicly readable, or if not, repeat the information here.
Testing instructions
Please provide detailed step-by-step instructions for manually testing this change.
Other information
Include anything else that will help reviewers and consumers understand the change.
Best Practices Checklist
We're trying to move away from some deprecated patterns in this codebase. Please
check if your PR meets these recommendations before asking for a review:
.ts,.tsx).propTypesanddefaultPropsin any new or modified code.src/testUtils.tsx(specificallyinitializeMocks)apiHooks.tsin this repo for examples.messages.tsfiles have adescriptionfor translators to use.../in import paths. To import from parent folders, use@src, e.g.import { initializeMocks } from '@src/testUtils';instead offrom '../../../../testUtils'