Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 18, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@edx/paragon 2.6.421.5.6 age confidence

Release Notes

openedx/paragon (@​edx/paragon)

v21.5.6

Compare Source

Bug Fixes
  • Update docs for a final publish before we move this package. (22dd0c4)

v21.5.5

Compare Source

Bug Fixes

v21.5.4

Compare Source

Bug Fixes
  • Update imports to the new brand package. (6719baa)

v21.5.3

Compare Source

Bug Fixes
  • avoid duplicate onChange calls in FormRadioSet and FormCheckboxSet (#​2705) (a395042)

v21.5.2

Compare Source

Bug Fixes

v21.5.1

Compare Source

Bug Fixes
  • run leave control logic when tabbing out of autosuggest (#​2663) (5521493)

v21.5.0

Compare Source

Features

v21.4.0

Compare Source

Features

v21.3.1

Compare Source

Bug Fixes

v21.3.0

Compare Source

Features
  • added new icon in es5 and jsx (5ef216f)

v21.2.0

Compare Source

Features

v21.1.10

Compare Source

Bug Fixes

v21.1.9

Compare Source

Bug Fixes
  • add ability to truncate text without spaces in Truncate component (#​2584) (3db63e7)

v21.1.8

Compare Source

Bug Fixes
  • update Card's border-radius and color in focused state (#​2607) (5eb4c8e)

v21.1.7

Compare Source

Bug Fixes

v21.1.6

Compare Source

Bug Fixes

v21.1.5

Compare Source

Bug Fixes

v21.1.4

Compare Source

Bug Fixes
  • use Form.Checkbox instead of default checkboxes in DataTable filters (#​2555) (d07827d)

v21.1.3

Compare Source

Bug Fixes
  • disable browser autocomplete and edit dropdown items elements (93bf239)

v21.1.2

Compare Source

Reverts

v21.1.1

Compare Source

Bug Fixes

v21.1.0

Compare Source

Bug Fixes
  • filtered dropdown items by display value instead of event target (#​2547) (cac6984)
Features

v21.0.1

Compare Source

Bug Fixes

v21.0.0

Compare Source

BREAKING CHANGES
  • aria-label is required when not using aria-labelledby
    in the SelectableBoxSet component. An associated label for the component is a WCAG requirement.
For Consumers

In order to associate a label with the SelectableBoxSet component, developers can use the aria-labelledby attribute. The value of this attribute should match the id of the element that is to be referenced as a label, whether visible or not. If no visible or invisible label is provided in the markup, developers can either make an invisible one (e.g. <h3 className="sr-only">Hello, World</h3>) that only assistive technologies would pick up on, or they can opt to use an aria-label instead.

See the doc site page for SelectableBox to view a live example of using aria-labelledby.

Examples

Using aria-labelledby with the SelectableBoxSet component:

<div className="bg-light-200 p-3">
  {/** `id` provided to the `h3` is the same value as the `aria-labelledby` in `SelectableBox.Set` **/}
  <h3 id="cheese selection" className="mb-4">
    Select your favorite cheese
  </h3>
  <SelectableBox.Set
    value={checkedCheeses}
    type={type}
    onChange={handleChange}
    name="cheeses"
    columns={isExtraSmall ? 1 : 3}
    ariaLabelledby="cheese selection"
  >
    <SelectableBox value="swiss" inputHidden={false} type={type} aria-label="swiss checkbox">
      <h3>
        Swiss
      </h3>
    </SelectableBox>
    <SelectableBox value="cheddar" inputHidden={false} type={type} aria-label="cheddar checkbox">
      <h3>
        Cheddar
      </h3>
    </SelectableBox>
    <SelectableBox value="pepperjack" inputHidden={false} type={type} aria-label="pepperjack checkbox">
      <h3>
        Pepperjack
      </h3>
    </SelectableBox>
  </SelectableBox.Set>
</div>

If not using aria-labelledby, developers must provide an aria-label to the component:

<SelectableBox.Set
  value={checkedCheeses}
  type={type}
  onChange={handleChange}
  name="cheeses"
  columns={isExtraSmall ? 1 : 3}
  ariaLabel="cheese selection"
>
  <SelectableBox value="swiss" inputHidden={false} type={type} aria-label="swiss checkbox">
    <h3>
      Swiss
    </h3>
  </SelectableBox>
  <SelectableBox value="cheddar" inputHidden={false} type={type} aria-label="cheddar checkbox">
    <h3>
      Cheddar
    </h3>
  </SelectableBox>
  <SelectableBox value="pepperjack" inputHidden={false} type={type} aria-label="pepperjack checkbox">
    <h3>
      Pepperjack
    </h3>
  </SelectableBox>
</SelectableBox.Set>

v20.46.3

Compare Source

v20.46.2

Compare Source

Bug Fixes

v20.46.1

Compare Source

Bug Fixes

v20.46.0

Compare Source

Features

v20.45.7

Compare Source

Bug Fixes

v20.45.6

Compare Source

Bug Fixes

v20.45.5

Compare Source

Bug Fixes

v20.45.4

Compare Source

Bug Fixes

v20.45.3

Compare Source

Bug Fixes

v20.45.2

Compare Source

Bug Fixes

v20.45.1

Compare Source

Bug Fixes
  • specific icons fix to ensure icons display correctly when used (#​2442) (1ae20f3)

v20.45.0

Compare Source

Features

v20.44.0

Compare Source

Features
  • add fixed increment scroll behaviour to useOverflowScroll (#​2151) (4f54e62)

v20.43.3

Compare Source

Bug Fixes

v20.43.2

Compare Source

Bug Fixes
  • removed white background on Stepper.Header component (#​2358) (4da189c)

v20.43.1

Compare Source

Bug Fixes

v20.43.0

Compare Source

Features
  • add customizability to the stepper header's compact view, so preferred max width can determine when compact view occurs (#​2338) (4485a3c)

v20.42.0

Compare Source

Features
  • add ability to use unlabeled Radio and Checkbox components in respective Form sets (#​1988) (309189d)

v20.41.0

Compare Source

Features

v20.40.2

Compare Source

Bug Fixes

v20.40.1

Compare Source

Bug Fixes
  • typo for bootstrap link and responsive docs (18a1f7f)

v20.40.0

Compare Source

Features
  • allows users to set loading type to images on CardImageCap component (64d9397)
  • allows users to set loading type to images on CardImageCap component (63a83c5)

v20.39.3

Compare Source

Bug Fixes

v20.39.2

Compare Source

Bug Fixes

v20.39.1

Compare Source

Bug Fixes
  • fixed double tab and styles clickable card component (#​2290) (cf8a387)

v20.39.0

Compare Source

Features

v20.38.0

Compare Source

Features
  • upgraded to node v18, added .nvmrc and updated workflows (#​2227) (5d10aab)

v20.37.0

Compare Source

Features
  • add new variants to Tabs component and fix nested links (#​2222) (6118e2c)

v20.36.2

Compare Source

Bug Fixes
  • use currentTarget in FormAutosuggest component to get selected option (#​2304) (8988f11)

v20.36.1

Compare Source

Bug Fixes
  • correctly handle value change in controlled variant of Form.Autosuggest component (#​2300) (0c92c78)

v20.36.0

Compare Source

Features
  • add actions prop to Card.Status and resolve few Card-related style issues (#​2272) (5894df1)
  • add enableEqualColumnHeights prop to CardGrid and CardDeck (#​2287) (7147a19)

v20.35.2

Compare Source

Bug Fixes
  • correctly handle onClick prop in Form.AutosuggestOption component (#​2286) (c3c7b74)

v20.35.1

Compare Source

Bug Fixes
  • update selected state of SelectMenu to match figma design (#​2279) (b3388a2)

v20.35.0

Compare Source

Features
  • provide functionality for inital value in autosuggest component (#​2277) (5677f62)

v20.34.0

Compare Source

Features

v20.33.0

Compare Source

Features

v20.32.3

Compare Source

Bug Fixes

v20.32.2

Compare Source

Bug Fixes

v20.32.1

Compare Source

Bug Fixes

v20.32.0

Compare Source

Features

v20.31.1

Compare Source

Bug Fixes

v20.31.0

Compare Source

Features

v20.30.4

Compare Source

Bug Fixes

v20.30.3

Compare Source

Bug Fixes

v20.30.2

Compare Source

Bug Fixes

v20.30.1

Compare Source

Bug Fixes

v20.30.0

Compare Source

Features

v20.29.0

Compare Source

Features
  • add icon size xs that looks good against a 1rem font (#​2149) (b14ea5f)

v20.28.5

Compare Source

Bug Fixes

v20.28.4

Compare Source

Bug Fixes

v20.28.3

Compare Source

Bug Fixes
  • add type-check step to CI and update typescript configs to transpile to ES6, not ES2019 (#​1962) (5ea0bb0)

v20.28.2

Compare Source

Bug Fixes
  • resolve bug with ProductTour to ensure individual checkpoints may define a custom onEnd (27ca431)

v20.28.1

Compare Source

Bug Fixes
  • update button styles to resolve inconsistencies with design spec (#​1910) (6bc91fb)

v20.28.0

Compare Source

Features

v20.27.3

Compare Source

Bug Fixes

v20.27.2

Compare Source

Bug Fixes
  • added white color for section title in Card component (#​1919) (88e3c03)

v20.27.1

Compare Source

Bug Fixes

v20.27.0

Compare Source

Features

v20.26.3

Compare Source

Bug Fixes

v20.26.2

Compare Source

Bug Fixes

v20.26.1

Compare Source

Bug Fixes
  • use callback refs instead of useRef and fallback to offsetLeft: 0 when first child element ref no longer exists (#​1894) (b4b60bb)

v20.26.0

Compare Source

Features
  • adds OverflowScroll, useOverflowScroll, CardCarousel (#​1884) (8f6ed5a)

v20.25.0

Compare Source

Features

v20.24.1

Compare Source

Bug Fixes

v20.24.0

Compare Source

Features
  • add manual publish workflow (e2939f2)

v20.23.0

Compare Source

Features
  • add ability to render Breadcrumbs with custom elements (#​1867) (2206ccc)

v20.22.4

Compare Source

Bug Fixes

v20.22.3

Compare Source

Bug Fixes

v20.22.2

Compare Source

Bug Fixes
  • ensure CardHeader title and subtitle turn white with dark variant (#​1862) (f4d3337)

v20.22.1

Compare Source

Bug Fixes
  • ensure card footer switches to white when card variant is dark (#​1861) (b2d270f)

v20.22.0

Compare Source

Features

v20.21.5

Compare Source

Bug Fixes

v20.21.4

Compare Source

Bug Fixes

v20.21.3

Compare Source

Bug Fixes

v20.21.2

Compare Source

Bug Fixes
  • update SelectionStatus message based on applied filters (#​1832) (c6e2862)

v20.21.1

Compare Source

Bug Fixes
  • ensure SmartStatus renders SelectionStatus based on selectedRowIds (#​1815) (5ac76ae)

v20.21.0

Compare Source

Features
  • support for externally controlled DataTable selections (#​1804) (eac3925)

v20.20.0

Compare Source

Bug Fixes
Features
  • export useArrowKeyNavigation and adds page about it documentation website (#​1720) (363c616)

v20.19.0

Compare Source

Features

v20.18.2

Compare Source

Bug Fixes

v20.18.1

Compare Source

Bug Fixes

v20.18.0

Compare Source

Features

v20.17.0

Compare Source

Features

v20.16.0

Compare Source

Features

v20.15.0

Compare Source

Features

v20.14.0

Compare Source

Features

v20.13.0

Compare Source

Bug Fixes
Features

20.12.1 (2022-09-30)

Bug Fixes

v20.12.1

Compare Source

Bug Fixes

v20.12.0

Compare Source

Features

20.11.1 (2022-09-07)

Bug Fixes

v20.11.1

Compare Source

Bug Fixes

v20.11.0

Compare Source

Features

20.10.2 (2022-09-02)

Bug Fixes

20.10.1 (2022-08-26)

Bug Fixes

v20.10.2

[Compare Source](


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from 2acf61c to a0d9e63 Compare September 25, 2025 15:49
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 2 times, most recently from d656b23 to 4de34a6 Compare October 21, 2025 12:09
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from 4de34a6 to 3addbdd Compare November 10, 2025 23:58
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from 3addbdd to 8a520fe Compare November 18, 2025 10:46
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from 8a520fe to ff4f7d5 Compare December 3, 2025 15:46
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from ff4f7d5 to 145d39b Compare December 31, 2025 15:53
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from 145d39b to 45e2e5e Compare January 8, 2026 16:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant